C# 委托的使用

2021-02-01 05:16

阅读:693

标签:ring   public   nbsp   函数   一个   begin   this   值类型   bsp   

 

1:定义一个委托,int是委托的函数的返回值类型,如果是void就写void
public delegate int ListenServerDelegate();

2:创建一个委托,GetServerList是函数
ListenServerDelegate listenServerDelegate = new ListenServerDelegate(GetServerList);

3:开始执行委托的函数,str是GetServerList的参数,如果无参就不写
this.BeginInvoke(listenServerDelegate, new object[] { str });

4:
public int GetServerList(string str) { return Int i=1;}

 

C# 委托的使用

标签:ring   public   nbsp   函数   一个   begin   this   值类型   bsp   

原文地址:https://www.cnblogs.com/wa502/p/11603462.html


评论


亲,登录后才可以留言!