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