IBitwiseOperators<TSelf,TOther,TResult>.BitwiseAnd 运算符

定义

计算两个值的按位和 。

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

适用于