using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace m1w4d3_delegate { //委托类型的定义 //委托是一个引用类型,存放着一个或者一组方法的引用 //方法的签名 //访问修饰 关键字(delegate) 对应方法的签名(返回类型 委托名 参数) //public delegate v…