Esempio n. 1
0
 public FileSignature(HashValue hash, ulong length)
 {
     Hash   = hash;
     Length = length;
 }
Esempio n. 2
0
 public FileSignature(HashValue hash, long length)
 {
     Hash   = hash;
     Length = Convert.ToUInt64(length);
 }