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