MiscUtil.IO.EndianBinaryReader.ReadInt64 C# (CSharp) Method

ReadInt64() public method

Reads a 64-bit signed integer from the stream, using the bit converter for this reader. 8 bytes are read.
public ReadInt64 ( ) : long
return long
        public long ReadInt64()
        {
            ReadInternal(buffer, 8);
            return bitConverter.ToInt64(buffer, 0);
        }

Usage Example

Example #1
0
 protected override void Parse(EndianBinaryReader r)
 {
     Time = r.ReadInt64();
     TimeOfDay = r.ReadInt64();
 }
All Usage Examples Of MiscUtil.IO.EndianBinaryReader::ReadInt64