SqlGuid.Inequality(SqlGuid, SqlGuid) Operator

Definition

Performs a logical comparison on two SqlGuid structures to determine whether they are not equal.

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

Parameters

x
SqlGuid

A SqlGuid structure.

y
SqlGuid

A SqlGuid structure.

Returns

A SqlBoolean that is True if the two instances are not equal or False if the two instances are equal. If either instance of SqlGuid is null, the Value of the SqlBoolean will be Null.

Remarks

The equivalent method for this operator is SqlGuid.NotEquals(SqlGuid, SqlGuid).

Applies to

See also