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