摘要: 最简单的委托示例: 1 // 该委托可以指向任何传入两个整数并返回一个整数的方法 2 public delegate int BinaryOp( int x, int y ); 3 public class SimpleMath 4 { 5 public in... 阅读全文
posted @ 2015-05-02 20:44 ht-beyond 阅读(167) 评论(0) 推荐(0) 编辑