3 implementations of ToChar
Microsoft.Private.Windows.Core (1)
System\Private\Windows\BinaryFormat\Support\FormatterConverterStub.cs (1)
29
public char
ToChar
(object value) => default;
System.Private.Windows.Core (1)
System\Private\Windows\BinaryFormat\Support\FormatterConverterStub.cs (1)
29
public char
ToChar
(object value) => default;
System.Runtime.Serialization.Formatters (1)
System\Runtime\Serialization\FormatterConverter.cs (1)
32
public char
ToChar
(object value)
1 reference to ToChar
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Serialization\SerializationInfo.cs (1)
381
return ReferenceEquals(foundType, typeof(char)) ? (char)value! : _converter.
ToChar
(value!);