SqlBinary.Equals Method  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Compares two SqlBinary structures to determine whether they are equal.
Overloads
| Equals(SqlBinary) | Indicates whether the current instance is equal to another instance of the same type. | 
| Equals(Object) | Compares the supplied object parameter to the Value property of the SqlBinary object. | 
| Equals(SqlBinary, SqlBinary) | Compares two SqlBinary structures to determine whether they are equal. | 
Equals(SqlBinary)
- Source:
- SQLBinary.cs
- Source:
- SQLBinary.cs
- Source:
- SQLBinary.cs
- Source:
- SQLBinary.cs
Indicates whether the current instance is equal to another instance of the same type.
public:
 virtual bool Equals(System::Data::SqlTypes::SqlBinary other);public bool Equals(System.Data.SqlTypes.SqlBinary other);override this.Equals : System.Data.SqlTypes.SqlBinary -> boolPublic Function Equals (other As SqlBinary) As BooleanParameters
- other
- SqlBinary
An instance to compare with this instance.
Returns
true if the current instance is equal to the other instance; otherwise, false.
Implements
Applies to
Equals(Object)
- Source:
- SQLBinary.cs
- Source:
- SQLBinary.cs
- Source:
- SQLBinary.cs
- Source:
- SQLBinary.cs
public:
 override bool Equals(System::Object ^ value);public override bool Equals(object? value);public override bool Equals(object value);override this.Equals : obj -> boolPublic Overrides Function Equals (value As Object) As BooleanParameters
- value
- Object
The object to be compared.
Returns
true if object is an instance of SqlBinary and the two are equal; otherwise false.
See also
Applies to
Equals(SqlBinary, SqlBinary)
- Source:
- SQLBinary.cs
- Source:
- SQLBinary.cs
- Source:
- SQLBinary.cs
- Source:
- SQLBinary.cs
Compares two SqlBinary structures to determine whether they are equal.
public:
 static System::Data::SqlTypes::SqlBoolean Equals(System::Data::SqlTypes::SqlBinary x, System::Data::SqlTypes::SqlBinary y);public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y);static member Equals : System.Data.SqlTypes.SqlBinary * System.Data.SqlTypes.SqlBinary -> System.Data.SqlTypes.SqlBooleanPublic Shared Function Equals (x As SqlBinary, y As SqlBinary) As SqlBooleanParameters
Returns
true if the two values are equal. Otherwise, false. If either instance is null, then the SqlBinary will be null.