Hi All,
I need to compare like:
Time test_Time ;
FromTime _fromTime;
ToTIme _ToTime;
;
_fromTime = 10:10; // Am
_ToTime = 12:20; // pm
if(_fromTime < _ToTime)
{
test_Time = _fromTime - _ToTime; // its has to get 2:10 balance time
}
How can I achieve this.
Thanks in advance