上一页 1 ··· 6 7 8 9 10

2013年4月4日

C# delegate ,Action,Func

摘要: delegate传统的委托,无泛型概念。namespace ConsoleApplication1{ class Program { private delegate bool Mydel(int a, int b); private static bool OneFun(int a, int b) { Console.WriteLine("a={0},b={1}", a, b); return a > b; } static void Main(string[] args) { Mydel C = new Mydel(On... 阅读全文

posted @ 2013-04-04 14:45 Shine-Zhong 阅读(241) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10

导航