Net Core教程

C# 委托与事件

本文主要是介绍C# 委托与事件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

具体流程如下:

1.类外声明委托
public delegate void SaySomething(string name);

2.写方法

public void SayHello(string name) { Console.WriteLine(“Hello,” + name + “!”); }
public void SayNiceToMeetYou(string name) { Console.WriteLine(“Nice to meet you,” + name + “!”); }

3.声明事件
public event SaySomething come;
//SaySomething是委托名,come是事件名。

4.实例化委托,并将方法赋给事件(用+=)
public void test()
{
SaySomething sayhello = new SaySomething(SayHello);
SaySomething saynice = new SaySomething(SayNiceToMeetYou); come += sayhello;
come += saynice;
come(“张三”); //用事件去调用所有委托的方法
}
在这里插入图片描述

这篇关于C# 委托与事件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!