현재시간 가져오기

CString strTime = CTime::GetCurrentTime().Format("%y-%m-%d %H:%M:%S");

 

시간 체크

 

CStopWatch stopWatch;
stopWatch.Start();

// 처리

stopWatch.End();
strMsg.Format(_T("[Test Time]  Time: %.3f sec-----"), stopWatch.GetDurationSecond());

 

+ Recent posts