委托简介:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 委托 { public class Program { //修饰符 delegate 返回值类型 委托名 ( 参数列表 ); public delegate void MyDelegate(); static void Main(string[] args) { //在委托中应用静态方法,类名.方法 MyDelegate MyDel = new MyDelegate(Test.SayHello); //在委托中应用实例化方法 MyDelegate myDel1 = new MyDelegate(new Test().SayHello1); MyDel(); myDel1(); Console.ReadKey(); } public class Test { //静态方法static public static void SayHello() { Console.WriteLine("hello world"); } //非静态方法 public void SayHello1() { Console.WriteLine("hello world1"); } } } }