如何在C#中获取当前线程的状态?

要获取当前线程的状态,请使用IsAlive()方法-

首先,创建一个新线程-

Thread t = Thread.CurrentThread;
t.Name = "Our Thread";

现在,要获取当前线程的状态-

t.IsAlive

以下是完整的代码-

示例

using System;
using System.Threading;

namespace Demo {
   class MyClass {
      static void Main(string[] args) {
         Thread t = Thread.CurrentThread;
         t.Name = "Our Thread";

         Console.WriteLine("Status = {0}", t.IsAlive);
         Console.ReadKey();
      }
   }
}

输出结果

Status = True