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