BitwiseOr() приватный Метод

private BitwiseOr ( BigInteger x, BigInteger y ) : BigInteger
x Microsoft.Scripting.Math.BigInteger
y Microsoft.Scripting.Math.BigInteger
Результат Microsoft.Scripting.Math.BigInteger
Пример #1
0
 public static BigInteger BitwiseOr(bool x, BigInteger y)
 {
     return(BigIntegerOps.BitwiseOr(x ? 1 : 0, y));
 }
Пример #2
0
 public static BigInteger BitwiseOr(BigInteger x, bool y)
 {
     return(BigIntegerOps.BitwiseOr(y ? 1 : 0, x));
 }