static void Nathan_timeSpan(Args _args)
{
CustTable ct;
System.DateTime first, second;
System.TimeSpan ts;
;
first = System.DateTime::get_Now();
sleep(123);
second = System.DateTime::get_Now();
ts = second.Subtract(first);
info(ts.ToString());
}