制作完成于2021年11月18日 使用VS2022
匿名方法:不需要定义就可以使用的方法
匿名方法,lambda表达式,一般用于代码量很少的情况
Func<int int int> a = delegate(int a,int b){
return a+b}