SqlByte.OnesComplement(SqlByte) 方法

定义

二进制反码运算符对其 SqlByte 操作数执行按位二进制反码运算。The ones complement operator performs a bitwise one's complement operation on its SqlByte operand.

public:
 static System::Data::SqlTypes::SqlByte OnesComplement(System::Data::SqlTypes::SqlByte x);
public static System.Data.SqlTypes.SqlByte OnesComplement (System.Data.SqlTypes.SqlByte x);
static member OnesComplement : System.Data.SqlTypes.SqlByte -> System.Data.SqlTypes.SqlByte
Public Shared Function OnesComplement (x As SqlByte) As SqlByte

参数

x
SqlByte

SqlByte 结构。A SqlByte structure.

返回

SqlByte

一个 SqlByte 结构,它的 Value 属性包含 SqlByte 参数的二进制反码。A SqlByte structure whose Value property contains the ones complement of the SqlByte parameter.

适用于