摘要: delegate int del(int a); static void Main(string[] args) { //匿名方法的几种表现形式 del del = delegate (int x) { return x; }; ... 阅读全文
posted @ 2018-12-06 16:39 紅人 阅读(262) 评论(0) 推荐(0)