码迷,mamicode.com
首页 > Windows程序 > 详细

C# 委托的使用

时间:2019-09-28 16:25:04      阅读:128      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!