2 references to ReadInt64
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\IO\UnmanagedMemoryAccessor.cs (2)
260
public double ReadDouble(long position) => BitConverter.Int64BitsToDouble(
ReadInt64
(position));
272
public ulong ReadUInt64(long position) => unchecked((ulong)
ReadInt64
(position));