关于委托的思考
在这里总结一下委托的使用:
1)定义一个委托类型:[修饰符] delegate 类型说明符 委托名 ([参数列表]);
2)定义委托类型的实例变量,并让它指向某一个具体的方法; 委托类型名 委托变量名 =new 委托类型名(方法名);
3)调用委托类型变量之乡的方法; 委托变量名(实参列表)。
问题描述
程序功能:定义一个含有两个整型参数名叫Calculation返回类型为double的委托,分别实现两个匹配的求和、求平均值的方法,并在主函数中测试它。
代码实现
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Calculate
{
//定义一个委托类型
public delegate double