6 references to MinValue
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
492
return
MinValue
;
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1715
(value <= -170141183460469231731687303715884105728.0) ? Int128.
MinValue
: (Int128)value;
System.Runtime.Numerics (4)
System\Numerics\BigInteger.cs (2)
4784
(value <= Int128.
MinValue
) ? Int128.
MinValue
: (Int128)value;
System\Numerics\Complex.cs (2)
1881
(value.m_real <= -170141183460469231731687303715884105728.0) ? Int128.
MinValue
: (Int128)value.m_real;
2017
(value.m_real <= -170141183460469231731687303715884105728.0) ? Int128.
MinValue
: (Int128)value.m_real;