C# 썸네일형 리스트형 C# Thread example http://msdn.microsoft.com/ko-kr/library/7a2f3ay4(v=vs.80).aspxusing System; using System.Threading; public class Worker { // This method will be called when the thread is started. public void DoWork() { while (!_shouldStop) { Console.WriteLine("worker thread: working..."); } Console.WriteLine("worker thread: terminating gracefully."); } public void RequestStop() { _shouldStop = true; } // Volati.. 더보기 이전 1 2 3 4 5 6 7 다음