如何在 C# 中获取线程的当前上下文 ID?


要创建一个新线程。

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

更新于: 2020 年 6 月 22 日

600 次浏览

开始您的职业生涯

通过完成课程获取认证

开始
广告
© . All rights reserved.