멀티 쓰레드 정직원 쓰레드 생성 using System.Threading; class Program { static void MainThread(object state) { Console.WriteLine("Hello, Thread!"); } // 메인 직원 static void Main(string[] args) { // 직원을 한명 더 고용하고, 일을 시킨다. Thread t = new Thread(MainThread); t.Start(); Console.WriteLine("Hello, World!"); } } 쓰레드를 생성하고 초기화 하는 것은 어렵지 않다. Thread t = new Thread()로 새로운 쓰레드를 만들어준다. 새로운 메서드를 MainThread라고 만들어주고 생성한 쓰레드 안에..