C# 委托的使用
2021-02-01 05:16
标签:ring public nbsp 函数 一个 begin this 值类型 bsp 1:定义一个委托,int是委托的函数的返回值类型,如果是void就写void 2:创建一个委托,GetServerList是函数 3:开始执行委托的函数,str是GetServerList的参数,如果无参就不写 4: C# 委托的使用 标签:ring public nbsp 函数 一个 begin this 值类型 bsp 原文地址:https://www.cnblogs.com/wa502/p/11603462.html
public delegate int ListenServerDelegate();
ListenServerDelegate listenServerDelegate = new ListenServerDelegate(GetServerList);
this.BeginInvoke(listenServerDelegate, new object[] { str });
public int GetServerList(string str) { return Int i=1;}
上一篇:C# 计时器和计数