SqlGuid.NotEquals(SqlGuid, SqlGuid) 方法

定义

对两个 SqlGuid 结构执行逻辑比较,以确定它们是否相等。Performs a logical comparison on two SqlGuid structures to determine whether they are not equal.

public:
 static System::Data::SqlTypes::SqlBoolean NotEquals(System::Data::SqlTypes::SqlGuid x, System::Data::SqlTypes::SqlGuid y);
public static System.Data.SqlTypes.SqlBoolean NotEquals (System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y);
static member NotEquals : System.Data.SqlTypes.SqlGuid * System.Data.SqlTypes.SqlGuid -> System.Data.SqlTypes.SqlBoolean
Public Shared Function NotEquals (x As SqlGuid, y As SqlGuid) As SqlBoolean

参数

x
SqlGuid

SqlGuid 结构。A SqlGuid structure.

y
SqlGuid

SqlGuid 结构。A SqlGuid structure.

返回

SqlBoolean

一个 SqlBoolean,它在两个实例不等时为 True,在两个实例相等时为 FalseA SqlBoolean that is True if the two instances are not equal or False if the two instances are equal. 如果 SqlGuid 的任一实例为空,则 ValueSqlBoolean 将为 NullIf either instance of SqlGuid is null, the Value of the SqlBoolean will be Null.

适用于