4 references to ToInt64
Microsoft.DotNet.SignCheckLibrary (1)
Verification\LZMAUtils.cs (1)
36
long fileLength = BitConverter.
ToInt64
(fileLengthBytes, 0);
Microsoft.ML.FastTree (1)
Utils\ToByteArrayExtensions.cs (1)
149
long a = BitConverter.
ToInt64
(buffer, position);
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\BitConverter.cs (2)
638
public static ulong ToUInt64(byte[] value, int startIndex) => unchecked((ulong)
ToInt64
(value, startIndex));
760
public static double ToDouble(byte[] value, int startIndex) => Int64BitsToDouble(
ToInt64
(value, startIndex));