XmlArchive.unarchiveInt

Unarchives the value associated with the given id.

  1. int unarchiveInt(string key)
  2. int unarchiveInt(Id id)
    class XmlArchive(U = char)
    int
    unarchiveInt
    (
    Id id
    )

Parameters

id Id

the id associated with the value

Return Value

Type: int

the unarchived value

Examples

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

Meta