OracleNumber.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 the specified items to other items.
Overloads
Equals(Object) |
Compares the supplied object parameter to the Value property of the OracleNumber object. |
Equals(OracleNumber, OracleNumber) |
Performs a logical comparison of the two OracleNumber structures to determine if they are equal. |
Equals(Object)
Compares the supplied object parameter to the Value property of the OracleNumber 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 OracleNumber and the two are equal, otherwise false
.
Applies to
Equals(OracleNumber, OracleNumber)
Performs a logical comparison of the two OracleNumber structures to determine if they are equal.
public:
static System::Data::OracleClient::OracleBoolean Equals(System::Data::OracleClient::OracleNumber x, System::Data::OracleClient::OracleNumber y);
public static System.Data.OracleClient.OracleBoolean Equals (System.Data.OracleClient.OracleNumber x, System.Data.OracleClient.OracleNumber y);
static member Equals : System.Data.OracleClient.OracleNumber * System.Data.OracleClient.OracleNumber -> System.Data.OracleClient.OracleBoolean
Public Shared Function Equals (x As OracleNumber, y As OracleNumber) As OracleBoolean
Parameters
An OracleNumber structure.
An OracleNumber structure.
Returns
An OracleBoolean that is True if the two instances are equal or False if the two instances are not equal. If either instance of OracleNumber is null, the Value of the OracleBoolean is Null.