SqlInt16.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.
Performs a logical comparison of two structures to determine whether they are equal.
Overloads
Equals(SqlInt16, SqlInt16) |
Performs a logical comparison of two SqlInt16 structures to determine whether they are equal. |
Equals(Object) |
Compares the specified object to the Value property of the SqlInt16 object. |
Equals(SqlInt16) |
Indicates whether the current instance is equal to another instance of the same type. |
Equals(SqlInt16, SqlInt16)
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
Performs a logical comparison of two SqlInt16 structures to determine whether they are equal.
public:
static System::Data::SqlTypes::SqlBoolean Equals(System::Data::SqlTypes::SqlInt16 x, System::Data::SqlTypes::SqlInt16 y);
public static System.Data.SqlTypes.SqlBoolean Equals (System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y);
static member Equals : System.Data.SqlTypes.SqlInt16 * System.Data.SqlTypes.SqlInt16 -> System.Data.SqlTypes.SqlBoolean
Public Shared Function Equals (x As SqlInt16, y As SqlInt16) As SqlBoolean
Parameters
Returns
true
if the two values are equal. Otherwise, false
. If either instance is null, then the SqlInt16
will be null.
See also
Applies to
Equals(Object)
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
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
true
if object is an instance of SqlInt16 and the two are equal; otherwise false
.
See also
Applies to
Equals(SqlInt16)
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
Indicates whether the current instance is equal to another instance of the same type.
public:
virtual bool Equals(System::Data::SqlTypes::SqlInt16 other);
public bool Equals (System.Data.SqlTypes.SqlInt16 other);
override this.Equals : System.Data.SqlTypes.SqlInt16 -> bool
Public Function Equals (other As SqlInt16) As Boolean
Parameters
- other
- SqlInt16
An instance to compare with this instance.
Returns
true
if the current instance is equal to the other instance; otherwise, false
.