OracleDateTime.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 object parameter to the Value property of the OracleDateTime object.
Overloads
Equals(Object) |
Compares the supplied object parameter to the Value property of the OracleDateTime object. |
Equals(OracleDateTime, OracleDateTime) |
Performs a logical comparison of two OracleDateTime structures to determine whether they are equal. |
Equals(Object)
Compares the supplied object parameter to the Value property of the OracleDateTime 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 OracleDateTime and the two are equal, otherwise false
.
Applies to
Equals(OracleDateTime, OracleDateTime)
Performs a logical comparison of two OracleDateTime structures to determine whether they are equal.
public:
static System::Data::OracleClient::OracleBoolean Equals(System::Data::OracleClient::OracleDateTime x, System::Data::OracleClient::OracleDateTime y);
public static System.Data.OracleClient.OracleBoolean Equals (System.Data.OracleClient.OracleDateTime x, System.Data.OracleClient.OracleDateTime y);
static member Equals : System.Data.OracleClient.OracleDateTime * System.Data.OracleClient.OracleDateTime -> System.Data.OracleClient.OracleBoolean
Public Shared Function Equals (x As OracleDateTime, y As OracleDateTime) As OracleBoolean
Parameters
An OracleDateTime structure.
An OracleDateTime structure.
Returns
true
if the two values are equal, otherwise false
.