匿名方法

Func<int,int,int> plus = delegate(int a,int b){
    return a+b;
};

Func<int,int,int> plus = (a,b) => a + b;

首页 我的博客
粤ICP备17103704号