C# でスレッドの優先度を表示するには、Priority プロパティを使用します。
まず、 currentThread プロパティを使用してスレッドに関する情報を表示します -
Thread thread = Thread.CurrentThread;
次に、thread.Priority プロパティを使用してスレッドの優先度を表示します-
thread.Priority
C# でスレッドの優先順位を表示する完全なコードを見てみましょう。
リアルタイムデモ
using System; using System.Threading; namespace Demo { class MyClass { static void Main(string[] args) { Thread thread = Thread.CurrentThread; thread.Name = "My Thread"; Console.WriteLine("Thread Priority = {0}", thread.Priority); Console.ReadKey(); } } }
Thread Priority = Normal
以上がスレッドの優先度を表示する C# プログラムの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。