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