C# 에서 Sleep() 함수 사용
VC++ MFC에서 사용했던 Sleep() 함수는 System.Threading.Thread.Sleep() 로 대체할 수 있다.
VC++.Net 에서는 조금 다른형식이지만 아래와 같이 사용하면 된다.
System::Threading::Thread::Sleep();
VC++ MFC에서 사용했던 Sleep() 함수는 System.Threading.Thread.Sleep() 로 대체할 수 있다.
VC++.Net 에서는 조금 다른형식이지만 아래와 같이 사용하면 된다.
System::Threading::Thread::Sleep();
반응형