-Thread 생성 및 실행 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace study12 { public class App { public App() { Console.WriteLine("App"); //스레드 변수 선언 Thread t; //ThreadStart대리자 인스턴스화 ThreadStart ts = new ThreadStart(() => { for (int i = 0; i < 10; i++) { Console.WriteLine("Hello~!"); Thread.Sleep(50..