委托三------------多播委托与匿名方法-创新互联
============================================多播委托

-------------------------------------主程序
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
//多播委托只能使用无返回值的委托
//当str1执行失败后会阻止后面的方法的执行
Action a = str1;
a += str2;
a += str2;
a += str2;
a += str2;
StrAndName(a, "文聘");
Console.ReadKey();
}
static void str1(string name)
{
Console.WriteLine("看我{0}的厉害", name);
}
static void str2(string name)
{
Console.WriteLine("受死吧!{0}", name);
}
static void StrAndName(Action action, string name)
{
action(name);
}
}
} ============================================匿名方法
-------------------------------------主程序
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
string s = "你好!";
//不能使用break,goto,continue,ref,out
Action a = delegate(string str)
{
Console.WriteLine(s + str);
Console.ReadKey();
};
a("我叫张飞");
}
}
} 创新互联www.cdcxhl.cn,专业提供香港、美国云服务器,动态BGP最优骨干路由自动选择,持续稳定高效的网络助力业务部署。公司持有工信部办法的idc、isp许可证, 机房独有T级流量清洗系统配攻击溯源,准确进行流量调度,确保服务器高可用性。佳节活动现已开启,新人活动云服务器买多久送多久。
分享题目:委托三------------多播委托与匿名方法-创新互联
网站URL:http://www.jxjierui.cn/article/dghpsd.html


咨询
建站咨询
