Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

โปรแกรม C# ตรวจสอบสถานะกระทู้ปัจจุบัน


ในการตรวจสอบสถานะของเธรดปัจจุบันใน C# ให้ใช้ IsAlive ทรัพย์สิน

ประการแรก ใช้ currentThread คุณสมบัติเพื่อแสดงข้อมูลเกี่ยวกับเธรด -

Thread thread = Thread.CurrentThread;

ตอนนี้ใช้ thread.IsAlive คุณสมบัติเพื่อตรวจสอบสถานะของเธรด -

thread.IsAlive

ตัวอย่าง

ให้เราดูโค้ดทั้งหมดเพื่อตรวจสอบสถานะของเธรดปัจจุบันใน C#

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 Status = {0}", thread.IsAlive);
         Console.ReadKey();
      }
   }
}

ผลลัพธ์

Thread Status = True