【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
推荐阅读
- C#线程类
- C#线程生命周期
- C#匿名函数
- C#反射
- C#的代理delegate
- C#集合SortedList
- C#集合SortedDictionary
- C#字典Dictionary
- C#集合LinkedList