C# 程序显示当前线程名称
若要显示 C# 中当前线程的名称,请使用 Name 属性。
首先,使用 currentThread 属性显示有关线程的信息 -
Thread thread = Thread.CurrentThread;
现在使用 thread.Name 属性显示线程的名称 -
thread.Name
示例
让我们看看一个完整的代码展示 C# 中的当前线程名称。
using System; using System.Threading; namespace Demo { class MyClass { static void Main(string[] args) { Thread thread = Thread.CurrentThread; thread.Name = "My Thread"; Console.WriteLine("Thread Name = {0}", thread.Name); Console.ReadKey(); } } }
输出
Thread Name = My Thread
广告