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