如何在 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

更新于:22-Jun-2020

600 次浏览

启动你的 事业

完成此课程即可获得认证

开始
广告
© . All rights reserved.