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