SqlString.Inequality(SqlString, SqlString) 运算符

定义

对两个 SqlString 操作数执行逻辑比较,以确定它们是否不相等。

public:
 static System::Data::SqlTypes::SqlBoolean operator !=(System::Data::SqlTypes::SqlString x, System::Data::SqlTypes::SqlString y);
public static System.Data.SqlTypes.SqlBoolean operator != (System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y);
static member op_Inequality : System.Data.SqlTypes.SqlString * System.Data.SqlTypes.SqlString -> System.Data.SqlTypes.SqlBoolean
Public Shared Operator != (x As SqlString, y As SqlString) As SqlBoolean

参数

返回

一个 SqlBoolean,它在两个实例不等时为 True,在两个实例相等时为 False。 如果 SqlString 的任一实例为空,则 ValueSqlBoolean 将为 Null

注解

此运算符的等效方法是 SqlString.NotEquals(SqlString, SqlString)

适用于

另请参阅