SqlByte.Equals Method

Definition

Performs a logical comparison to determine whether a SqlByte structure's value is equal to another object.

Overloads

Equals(SqlByte, SqlByte)

Performs a logical comparison of two SqlByte structures to determine whether they are equal.

Equals(Object)

Compares the supplied Object parameter to the Value property of the SqlByte object.

Equals(SqlByte, SqlByte)

Performs a logical comparison of two SqlByte structures to determine whether they are equal.

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

Parameters

x
SqlByte

A SqlByte structure.

y
SqlByte

A SqlByte structure.

Returns

SqlBoolean

true if the two values are equal. Otherwise, false. If either instance is null, then the SqlByte will be null.

See also

Applies to

Equals(Object)

Compares the supplied Object parameter to the Value property of the SqlByte object.

public:
 override bool Equals(System::Object ^ value);
public override bool Equals (object value);
public override bool Equals (object? value);
override this.Equals : obj -> bool
Public Overrides Function Equals (value As Object) As Boolean

Parameters

value
Object

The Object to be compared.

Returns

Boolean

true if object is an instance of SqlByte and the two are equal; otherwise false.

See also

Applies to