기본 쓰레드 생성해보기using System;using System.Threading;namespace ServerCore{ class Program { static void MainThread() { Console.WriteLine("Hello, Thread!"); } static void Main(string[] args) { Thread t = new Thread(MainThread); t.Start(); Console.WriteLine("Hello, World!"); } }}기본 쓰레드 생성 문법쓰레드 관련 명령어.Join() -..