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