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

Action 和 Func 的用法以及区别

时间:2017-11-13 13:45:54      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:委托   col   测试结果   返回值   func   nbsp   结果   img   技术   

 

Action 无返回值

Func 有返回值,且最后一个参数为返回值

 

Action用法

 

public static void test(string s)
        {
            Console.WriteLine("name1:{0}", s); 
        }
static void Main(string[] args)
        {
            Action<string> action_ = new Action<string>(test);
            action_ -= test;
            action_ += delegate(string s) { Console.WriteLine("name2:{0}", s); };
            action_("1");
}

测试结果

技术分享

 

Func 和Action 用法类似,只是其有返回值

说明:Action 和 Func 委托方法,就是一种方法的泛型,可以将方法名作为参数进行传递。

 

Action 和 Func 的用法以及区别

标签:委托   col   测试结果   返回值   func   nbsp   结果   img   技术   

原文地址:http://www.cnblogs.com/hcfan/p/7825544.html

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