SqlSingle.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
| Name | Description |
|---|---|
| Equals(Object) |
Compares the supplied object parameter to the Value property of the SqlSingle object. |
| Equals(SqlSingle, SqlSingle) |
Performs a logical comparison of the two SqlSingle parameters to determine whether they are equal. |
Equals(Object)
public:
override bool Equals(System::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 the object is an instance of SqlSingle and the two are equal. Otherwise, false.
See also
Applies to
Equals(SqlSingle, SqlSingle)
Performs a logical comparison of the two SqlSingle parameters to determine whether they are equal.
public:
static System::Data::SqlTypes::SqlBoolean Equals(System::Data::SqlTypes::SqlSingle x, System::Data::SqlTypes::SqlSingle y);
public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y);
static member Equals : System.Data.SqlTypes.SqlSingle * System.Data.SqlTypes.SqlSingle -> System.Data.SqlTypes.SqlBoolean
Public Shared Function Equals (x As SqlSingle, y As SqlSingle) As SqlBoolean
Parameters
Returns
true if the two values are equal. Otherwise, false. If either instance is null, then the SqlSingle will be null.