作为新手对委托的学习: 1.定义委托:委托实际上是一个类,在定义委托前就知道了方法的返回类型和方法的参数类型(可以把委托理解为只知道方法的返回类型和方法的参数类型,不知道方法体) public delegate string TestDelegate(string test); 2.实例: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Thre…