コード例 #1
0
 public static ulong ReadUInt64(this FileStream stream, bool isLittleEndian)
 {
     return(stream.Read(bytes => BitConverterEx.ToUInt64(bytes, 0, isLittleEndian)));
 }