5 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);
Roslyn.VisualStudio.Next.UnitTests (1)
UnifiedSettings\UnifiedSettingsTests.cs (1)
281
var expectedTags = BitConverter.
ToInt64
([.. XxHash128.Hash(fileBytes).Take(8)], 0).ToString("X16");
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\BitConverter.cs (2)
667
public static ulong ToUInt64(byte[] value, int startIndex) => unchecked((ulong)
ToInt64
(value, startIndex));
814
public static double ToDouble(byte[] value, int startIndex) => Int64BitsToDouble(
ToInt64
(value, startIndex));