如何获取 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
广告