Exemple #1
0
 public static ulong ReadBE8U(this Stream stream)
 {
     return(IOH.ReadBE8U(Read(stream, 8), 0));
 }
Exemple #2
0
 /// <summary>Reads a little-endian long (8 bytes) from a stream.</summary>
 public static long ReadLE8(this Stream stream)
 {
     return(IOH.ReadLE8(Read(stream, 8), 0));
 }