13 references to MinValue
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (2)
1784(value <= nint.MinValue) ? nint.MinValue : (nint)value;
src\libraries\System.Private.CoreLib\src\System\Enum.cs (1)
150if ((long)uint64Value < nint.MinValue || (long)uint64Value > nint.MaxValue) return null;
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
638static nint IMinMaxValue<nint>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\Math.cs (1)
90/// <param name="value">A number that is greater than <see cref="IntPtr.MinValue" />, but less than or equal to <see cref="IntPtr.MaxValue" />.</param>
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (2)
1720(value <= nint.MinValue) ? nint.MinValue : (nint)value;
System.Runtime.Numerics (6)
System\Numerics\BigInteger.cs (2)
4719(value <= nint.MinValue) ? nint.MinValue : (nint)value;
System\Numerics\Complex.cs (4)
1900(value.m_real <= nint.MinValue) ? nint.MinValue : (nint)value.m_real; 2036(value.m_real <= nint.MinValue) ? nint.MinValue : (nint)value.m_real;