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