3 implementations of ToInt16
BinaryFormatTests (1)
FormatTests\FormattedObject\HashTableTests.cs (1)
271public short ToInt16(object value) => throw new NotImplementedException();
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\libraries\System.Private.CoreLib\src\System\Runtime\Serialization\SerializationInfo.cs (1)
400return ReferenceEquals(foundType, typeof(short)) ? (short)value! : _converter.ToInt16(value!);