コード例 #1
0
 public FreeBlock(Unpacker unpacker)
 {
     unpacker.Unpack(out Index);
     unpacker.Unpack(out Count);
 }
コード例 #2
0
 public static Hash UnpackHash(this Unpacker unpacker)
 {
     unpacker.Unpack(out Hash hash);
     return(hash);
 }
コード例 #3
0
 public static Key UnpackKey(this Unpacker unpacker, bool isPrivateKey)
 {
     unpacker.Unpack(isPrivateKey, out Key key);
     return(key);
 }
コード例 #4
0
 public static Signature UnpackSignature(this Unpacker unpacker)
 {
     unpacker.Unpack(out Signature signature);
     return(signature);
 }
コード例 #5
0
 public Item(Unpacker unpacker)
 {
     unpacker.Unpack(out Name);
     unpacker.Unpack(out Checksum);
 }