Public Function CompareTo(ByVal rhs As DateTime) As DTCompareResult
Public Enum DTCompareResult
DTCompareResult_equal
DTCompareResult_lessThan
DTCompareResult_greaterThan
DTCompareResult_indeterminate
End Enum
| Property | Description | |||
| Argument - rhs | The DateTime to compare with | |||
| Return |
Using the following example Dim dtFuture as new LtXmlComLib21.DateTime dtRes = dtFuture.CompareTo(dtPast) |
|||
| Description | Compares this DateTime with another DateTime. | |||
| Remarks | Time zones are normalized out before the comparision. |