摘要: 列举常用的委托 1、Action 定义:public delegate void Action(); 赋值: Action action1 = () => { }; Action action2 = delegate() { }; 调用: action1 (); action2 (); 2、Func 阅读全文
posted @ 2013-01-14 15:59 jeffh 阅读(164) 评论(0) 推荐(0)