operator ==
This static operator determines if two OracleTimeStamp
values are equal.
Declaration
// C# public static bool operator == (OracleTimeStamp value1, OracleTimeStamp value2);
Parameters
-
value1
The first
OracleTimeStamp
. -
value2
The second
OracleTimeStamp
.
Return Value
Returns true
if they are the same; otherwise, returns false
.
Remarks
The following rules apply to the behavior of this method.
-
Any
OracleTimeStamp
that has a value is greater than anOracleTimeStamp
that has a null value. -
Two
OracleTimeStamp
s that contain a null value are equal.