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