C#主线程

【C#主线程】在进程内部创建的第一个线程称为主线程。它首先开始,最后结束。
让我们看一下C#中的Main线程示例。

using System; using System.Threading; public class ThreadExample { public static void Main(string[] args) { Thread t = Thread.CurrentThread; t.Name = "MainThread"; Console.WriteLine(t.Name); } }

输出:
MainThread

    推荐阅读