OracleBoolean.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 OracleBoolean structures to determine if they are equal.
Overloads
Equals(Object) |
Compares the supplied object parameter to the OracleBoolean. |
Equals(OracleBoolean, OracleBoolean) |
Compares two OracleBoolean structures to determine if they are equal. |
Equals(Object)
Compares the supplied object parameter to the OracleBoolean.
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 object is an instance of OracleBoolean and the two are equal; otherwise false
.
Applies to
Equals(OracleBoolean, OracleBoolean)
Compares two OracleBoolean structures to determine if they are equal.
public:
static System::Data::OracleClient::OracleBoolean Equals(System::Data::OracleClient::OracleBoolean x, System::Data::OracleClient::OracleBoolean y);
public static System.Data.OracleClient.OracleBoolean Equals (System.Data.OracleClient.OracleBoolean x, System.Data.OracleClient.OracleBoolean y);
static member Equals : System.Data.OracleClient.OracleBoolean * System.Data.OracleClient.OracleBoolean -> System.Data.OracleClient.OracleBoolean
Public Shared Function Equals (x As OracleBoolean, y As OracleBoolean) As OracleBoolean
Parameters
An OracleBoolean structure.
An OracleBoolean 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 OracleBoolean is null, the Value of the OracleBoolean is Null.