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
以上が現在のスレッドのステータスを確認する C# プログラムの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。