Exemplo n.º 1
0
 public void ReadUInt64_Sequence()
 {
     using (var f = new GenericFile())
     {
         f.CreateFile(new byte[] { 42, 00, 00, 00, 00, 00, 00, 00, 255, 255, 255, 255, 255, 255, 255, 255 });
         Assert.AreEqual((UInt64)42, f.ReadUInt64());
         Assert.AreEqual(UInt64.MaxValue, f.ReadUInt64());
     }
 }