Thread

基本

Thread基本 class Program { static void Main(string[] args) { Thread t1 = new Thread(new ThreadStart(MethodA)); t1.Start(); t1.Join(); MethodB(); Console.WriteLine("...end"); Console.ReadLine(); } static void MethodA() { for (int i = 0; i <…