创建一个新线程。
Thread thread = Thread.CurrentThread; thread.Name = "My new Thread”;
若要获取当前的上下文ID,请使用ContextID属性。
Thread.CurrentContext.ContextID
让我们看完整的代码-
using System;
using System.Threading;
namespace Demo {
class MyClass {
static void Main(string[] args) {
Thread thread = Thread.CurrentThread;
thread.Name = "My new Thread";
Console.WriteLine("Thread Name = {0}", thread.Name);
Console.WriteLine("current Context id: {0}", Thread.CurrentContext.ContextID);
Console.ReadKey();
}
}
}输出结果
Thread Name = My new Thread current Context id: 0