3 implementations of ToInt64
BinaryFormatTests (1)
FormatTests\FormattedObject\HashTableTests.cs (1)
273
public long
ToInt64
(object value) => throw new NotImplementedException();
System.Private.Windows.Core (1)
System\Private\Windows\BinaryFormat\Support\FormatterConverterStub.cs (1)
35
public long
ToInt64
(object value) => default;
System.Runtime.Serialization.Formatters (1)
System\Runtime\Serialization\FormatterConverter.cs (1)
84
public long
ToInt64
(object value)
1 reference to ToInt64
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Runtime\Serialization\SerializationInfo.cs (1)
426
return ReferenceEquals(foundType, typeof(long)) ? (long)value! : _converter.
ToInt64
(value!);