2007年10月19日
摘要: 异步调用委托的3种方法 using System; using System.Collections.Generic; using System.Text; namespace AsyncDelegate { class Program { delegate int IntIntDelegate(int x);//生明一个委托 int Squ... 阅读全文
posted @ 2007-10-19 23:16 萧佰刚 阅读(382) 评论(1) 推荐(0) 编辑
摘要: 下面这段程序演示了Timer类的用法。 using System; using System.Threading; class TimerExampleState { public int counter = 0; public Timer tmr; } class App { public static void Main() { Timer... 阅读全文
posted @ 2007-10-19 12:02 萧佰刚 阅读(320) 评论(0) 推荐(0) 编辑