Thread thread = Thread.CurrentThread;
Console.WriteLine(thread.ThreadState); // 출력결과 Running
쓰레드 생성은 트리거 쪽에 두는게 아니라 초기화 쪽에 두는것이 일반적이다.
트리거가 작동할 때마다 쓰레드가 생성된다면 많은 부하가 걸릴것이다.
using System.Threading;
Thread Mythread;
Mythread = new Thread(new ThreadStart(작업할 메소드 필수!)) { Name = "ThreadName" };