溫馨提示×

c# threadstart怎樣創(chuàng)建前臺線程

c#
小樊
96
2024-06-24 10:10:34
欄目: 編程語言

在C#中,可以使用Thread類的Start方法來創(chuàng)建一個前臺線程。以下是一個示例代碼:

using System;
using System.Threading;

class Program
{
    static void Main()
    {
        Thread thread = new Thread(DoWork);
        thread.Start();
    }

    static void DoWork()
    {
        Console.WriteLine("This is a foreground thread.");
    }
}

在上面的示例中,我們首先創(chuàng)建一個Thread對象并將其綁定到一個方法DoWork。然后調(diào)用Start方法來啟動線程,這將創(chuàng)建一個前臺線程。在DoWork方法中,我們簡單地輸出一條消息來表示這是一個前臺線程。

0