3 references to ThrowInt32OverflowException
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Convert.cs (3)
1027if ((int)value < 0) ThrowInt32OverflowException(); 1038if (value < int.MinValue || value > int.MaxValue) ThrowInt32OverflowException(); 1045if (value > int.MaxValue) ThrowInt32OverflowException();