要使用線程,請在程式碼中新增以下命名空間-
using System.Threading;
首先,您需要在C# 中建立一個新線程-
Thread thread = new Thread(threadDemo);
上面,threadDemo是我們的執行緒函數。
現在將參數傳遞給執行緒-
thread.Start(str);
上面設定的參數是-
String str = "Hello World!";
讓我們看看在C# 中將參數傳遞給線程的完整程式碼。
即時示範 p>
using System; using System.Threading; namespace Sample { class Demo { static void Main(string[] args) { String str = "Hello World!"; // new thread Thread thread = new Thread(threadDemo); // passing parameter thread.Start(str); } static void threadDemo(object str) { Console.WriteLine("Value passed to the thread: "+str); } } }
Value passed to the thread: Hello World!
以上是將參數傳遞給線程的 C# 程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!