XmlArchive.unarchiveUlong

Unarchives the value associated with the given id.

  1. ulong unarchiveUlong(string key, Id id)
  2. ulong unarchiveUlong(Id id)
    class XmlArchive(U = char)
    ulong
    unarchiveUlong
    (
    Id id
    )

Parameters

id Id

the id associated with the value

Return Value

Type: ulong

the unarchived value

Examples

auto archive = new XmlArchive!();
archive.beginUnarchiving(data);
auto foo = unarchiveBool(0);

Meta