XmlArchive.archiveNull

Archives a null pointer or reference.

class XmlArchive(U = char)
void
archiveNull
(
string type
,
string key
)

Parameters

type string

the runtime type of the pointer or reference to archive

key string

the key associated with the null pointer

Examples

int* ptr;

auto archive = new XmlArchive!();
archive.archiveNull(typeof(ptr).stringof, "ptr");

Meta