白天有雨

此处应该有掌声

导航

老外编的程序:Timed Thread Example

using System;
using System.Threading;


class App {
   public static void Main() {
      Console.WriteLine("Checking for status updates every 2 seconds.");
      Console.WriteLine("   (Hit Enter to termiante the sample)");
      Timer timer = new Timer(new TimerCallback(CheckStatus), null, 0, 2000);

      Console.Write("Press Enter to close window...");
      Console.Read();
   }


   // The callback method's signature MUST match that of a System.Threading.TimerCallback
   // delegate (it takes an Object parameter and returns void)
   static void CheckStatus(Object state) {
      Console.WriteLine("Checking Status.");
      // ...
   }
}

posted on 2005-12-31 15:24  卓如  阅读(248)  评论(0编辑  收藏  举报