Hi,
How to get current Date and Time ?
I can do it via
SYSTEMTIME st;
::GetLocalTime(&st);
double startAt = ( st.wHour * 60 + st.wMinute) * 60 + st.wSecond + double(st.wMilliseconds)/1000;
DoSomeImportantWork();
::GetLocalTime(&st);
double stopAt = ( st.wHour * 60 + st.wMinute) * 60 + st.wSecond + double(st.wMilliseconds)/1000;
Console().WriteLn( String().Format("Done in %.3f Seconds.", passed ));
But what about PCL?
Best regards,
Nikolay.