摘要:
using System;public delegate int AsyncMethod(int start,int end);//声明一个delegatepublic class AsyncDemo{ public static void Main() { AsyncMethod async = new AsyncMethod(DoSum);//实例化delegate ... 阅读全文
posted @ 2008-11-04 14:26 且行且思 阅读(341) 评论(0) 推荐(0) 编辑