C#基础——委托
2021-07-11 21:07
标签:[] public write OLE 记忆 nbsp lin 介绍 int 以下所写是个人对委托的理解,为了加深对委托的理解和记忆,特地写下来。 委托的介绍: 委托和事件是一对好搭档,事件在之后的文章中做介绍。C#中常使用委托做回调。 委托其实是一个类,在编译之后的编译文件中可以看到,委托的类型是class。 1.声明委托 使用关键字:delegate, 如下所示:这里声明了一个没有返回值的委托。 2.使用委托 C#基础——委托 标签:[] public write OLE 记忆 nbsp lin 介绍 int 原文地址:https://www.cnblogs.com/shendaxian/p/9627701.htmlpublic delegate void ConsloleWrite(string str);
public class Program
{
static void Main(string[] args)
{
Console.Write("请输入:");
string str = Console.ReadLine();
TestDelegate td = new TestDelegate();
td.DelegatePrint(Convert.ToInt32(str), print);
}
public static void print