スレッドを使用するには、コードに次の名前空間を追加します -
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 中国語 Web サイトの他の関連記事を参照してください。