委托:就是一个方法的类型,下面3个调用情况来详细熟悉一下: 1.调用组合委托 //委托:就是一个方法的类型 public delegate int TestDelegateStr(); public delegate string TestDelegateInt(int a); public class 委托 { //实例化委托:需要一个方法来实例化 public static TestDelegateStr tdstr1; public static TestDelegateInt tdint…