public virtual object InPlaceBitwiseAnd(object self, object other)
 {
     return(Ops.BitwiseAnd(self, other));
 }
Example #2
0
 public static object OperatorAnd(object a, object b)
 {
     return(Ops.BitwiseAnd(a, b));
 }