摘要:
异步调用委托的3种方法 using System; using System.Collections.Generic; using System.Text; namespace AsyncDelegate { class Program { delegate int IntIntDelegate(int x);//生明一个委托 int Squ... 阅读全文
摘要:
下面这段程序演示了Timer类的用法。 using System; using System.Threading; class TimerExampleState { public int counter = 0; public Timer tmr; } class App { public static void Main() { Timer... 阅读全文