Pour créer un fil de discussion, j'ai créé une fonction -
public void myThread() { for (int i = 0; i < 3; i++) { Console.WriteLine("My Thread"); } }
Appelez la fonction ci-dessus pour créer un fil de discussion et créer un nouveau délégué ThreadStart -
Demo d = new Demo(); Thread thread = new Thread(new ThreadStart(d.myThread));
Utilisez le code suivant pour créer un fil de discussion simple.
Démo en temps réel
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
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!