c# ManagedThreadID
![[C#] 스레드 클래스 멤버](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FbPeeDP%2FbtqDXDU6pnz%2FAAAAAAAAAAAAAAAAAAAAAAN0_SK8vxrCDiXM7RWPg9B5zTWkI9IMVH0OBDae2_3k%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DmAehJ3CC5dsGBLqJa%252FAzIsYUwlc%253D)
[C#] 스레드 클래스 멤버
1. Thread 클래스 멤버 using System; using System.Threading; class Program { public static void F1() { Console.WriteLine("F1 Start"); Thread.Sleep(1000); Console.WriteLine("F1 End"); } public static void Main() { Thread t1 = new Tread(F1); t1.Start(); Console.WriteLine($"{t1.ManagedThreadID}"); Console.WriteLine($"{t1.Priority}"); Console.WriteLine($"{t1.IsThreadPoolThread}"); Console.WriteLine($"{t1...