码迷,mamicode.com
首页 > 其他好文 > 详细

委托 Action和Func

时间:2020-04-26 15:26:08      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:nbsp   span   res   返回   send   str   tac   result   定义   

Action 无参数,无返回值

1.定义无参委托Action

  Action NoparamMethod;

2.加入委托链

  NoparamMethod += MyMethod;

3.触发委托

  NoparamMethod();

Action<T>   泛型T参数,不带返回值

1.定义泛型带参委托

  Action<string> TActionMethod;

2.加入委托链

  TActionMethod+= TMyMethod;

3.触发委托

  TActionMethod("abc");

Func<in,out> 泛型带返回值(可带参,也可不带参)

1.定义

Func<string> SendFunc;    //不带参数,但是带返回值

Func<string,string> SendFunc;   //带1个string参数,带返回值

2.加入委托链

SendFunc += FMethod;

3.触发委托

string result = SendFunc("abc");

 

委托 Action和Func

标签:nbsp   span   res   返回   send   str   tac   result   定义   

原文地址:https://www.cnblogs.com/boentouch/p/12779664.html

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