摘要:
转至http://www.cnblogs.com/luluping/archive/2009/09/17/1568442.html先给段代码://测试使用的公共值 int num = 10; //测试Func委托 Func<int, int> f; f = (int tempf) => { return tempf + 1; }; Response.Write(f(num).ToString()+"<br />"); //调用f委托,并打印相应的值! //测试Action委托 Action<int> a; a = (int temp 阅读全文