スレッドを作成するために、関数を作成しました -
public void myThread() { for (int i = 0; i < 3; i++) { Console.WriteLine("My Thread"); } }
上記の関数を呼び出してスレッドを作成し、新しい ThreadStart デリゲートを作成します-
Demo d = new Demo(); Thread thread = new Thread(new ThreadStart(d.myThread));
次のコードを使用して、単純なスレッドを作成します。
リアルタイムデモ
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; class Demo { public void myThread() { for (int i = 0; i < 3; i++) { Console.WriteLine("My Thread"); } } } class NewThread { public static void Main() { Demo d = new Demo(); Thread thread = new Thread(new ThreadStart(d.myThread)); thread.Start(); Console.Read(); } }
My Thread My Thread My Thread
以上が単純なスレッドを作成するための C# プログラムの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。