在进程中执行的第一个线程称为主线程。当C#程序开始执行时,将自动创建主线程。
使用Thread类创建的线程称为主线程的子线程。
这是显示如何创建主线程和子线程的示例-
using System; using System.Threading; namespace Demo { class Program { static void Main(string[] args) { Thread th = Thread.CurrentThread; th.Name = "MainThread"; Console.WriteLine("This is {0}", th.Name); Console.ReadKey(); } } }
输出结果
This is MainThread