摘要: public delegate int Mydg(int a ,int b);public static class LambdaTest{public static int Oper(this int a ,int b ,Mydg dg){return dg(a,b)}}Console.Write... 阅读全文
posted @ 2015-01-11 12:11 xjt360 阅读(125) 评论(0) 推荐(0) 编辑