Archive.unarchiveByte

Unarchives the value associated with the given id.

  1. byte unarchiveByte(string key)
  2. byte unarchiveByte(Id id)
    interface Archive
    byte
    unarchiveByte
    ()

Parameters

id Id

the id associated with the value

Return Value

Type: byte

the unarchived value

Examples

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

Meta