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

จะแสดงชื่อกระทู้ปัจจุบันใน C # ได้อย่างไร?


ใช้คุณสมบัติ Name เพื่อแสดงชื่อของเธรดปัจจุบันใน C#

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

Thread thread = Thread.CurrentThread;

ตอนนี้ใช้คุณสมบัติ thread.Name เพื่อแสดงชื่อของเธรด -

thread.Name

ให้เราดูโค้ดที่สมบูรณ์แสดงชื่อเธรดปัจจุบันใน 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 Name = {0}", thread.Name);
         Console.ReadKey();
      }
   }
}

ผลลัพธ์

Thread Name = My Thread