摘要: class Program { //声明委托 delegate int MyDelegate(int x, int y); static void Main(string[] args) { MyDelegate _myDelegate = new MyDelegate(fun1); ... 阅读全文
posted @ 2018-09-29 09:58 api-80 阅读(196) 评论(0) 推荐(0) 编辑