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