On 2015-02-01 at 16:04, Suliman wrote:
opCmp(in DateTime rhs);

what is rhs?

RHS is probably short of "right hand side", ie. the argument on the right side of 
the operator in a binary operator expression. In `a < b` it would be b.

I am trying to do something like this:
if( DateTime.opCmp(dtindb, outoftime));

But it's seems that I wrong understand how to use this function...

No. That would be `if (dtindb.opCmp(outoftime))`, but it's simpler to write `if 
(dtindb < outoftime)`


Reply via email to