C#. Threads simple example
static void Main(string[] args) { Console.WriteLine(«inside thread id » + Thread.CurrentThread.ManagedThreadId); var otherThread = new Thread(ThreadWork); otherThread.Priority = ThreadPriority.Normal; otherThread.Start(5); otherThread.Join(); // wait for
Ответить
Хотите присоединиться к обсуждению?Не стесняйтесь вносить свой вклад!