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