Csharp/C Sharp by API/System.Threading/ThreadStart — различия между версиями

Материал из .Net Framework эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 15:31, 26 мая 2010

new ThreadStart(delegate )

using System;
using System.Threading;
class MainClass {
   public static void Countdown() {
    for (int i = 10; i > 0; i--) {
      Console.Write(i.ToString() + " ");
    }
  }
  public static void Main() {
    Thread t2 = new Thread(new ThreadStart(Countdown));
    t2.Start();
  }
}