C#暂停一个线程

using System;using System.Threading;namespace Sample {class Demo {static void Main(string[] args) {for (int i = 0; i 10; i++) {

编程学习网为您整理以下代码实例,主要实现:C#暂停一个线程,希望可以帮到各位朋友。

using System;
using System.Threading;

namespace Sample {

   class Demo {

      static voID Main(string[] args) {

         for (int i = 0; i < 10; i++) {
            Console.Writeline("Sleep for 1 second!");
            Thread.Sleep(1000);
         }

         Console.Readline();
      }
   }
}

本文标题为:C#暂停一个线程

基础教程推荐