2 references to IsEven
System.Runtime.Numerics (2)
System\Numerics\BigInteger.cs (2)
992
result = value._sign < 0 && !exponent.
IsEven
? -1 * bits : bits;
1022
result = new BigInteger(bits, value._sign < 0 && !exponent.
IsEven
);