SqlGuid.Equality(SqlGuid, SqlGuid) Operator

Definition

Performs a logical comparison of two SqlGuid structures to determine whether they are 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 ( = ) : 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 equal or False if the two instances are not 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.Equals(SqlGuid, SqlGuid).

Applies to

See also