IBitwiseOperators<TSelf,TOther,TResult>.BitwiseAnd 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
计算两个值的按位和 。
public:
static TResult operator &(TSelf left, TOther right);
public static abstract TResult operator & (TSelf left, TOther right);
static member ( &&& ) : 'Self * 'Other -> 'Result
Public Shared Operator And (left As TSelf, right As TOther) As TResult
参数
- left
- TSelf
使用 right
的值and
。
- right
- TOther
使用 left
的值and
。
返回
TResult
和 的 left
按位和 right
。