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

C# 声明、实例化和使用委托的几种方法

时间:2015-10-27 19:26:30      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

 1.在 C# 1.0 及更高版本中,可以按以下示例所示声明委托。

 

// Declare a delegate.
delegate void Del(string str);

// Declare a method with the same signature as the delegate.
static void Notify(string name)
{
    Console.WriteLine("Notification received for: {0}", name);
} 
// Create an instance of the delegate.
Del del1 = new Del(Notify);
// 调用委托:
del1("参数");

  

2.C# 2.0 提供了更简单的方法来编写上面的声明,如以下示例所示。

// Instantiate Del by using an anonymous method.
Del del3 = delegate(string name)
{ Console.WriteLine("Notification received for: {0}", name); };

//调用委托:
del3("参数");

 

3.在 C# 3.0 及更高版本中,还可以使用 Lambda 表达式来声明和实例化委托,如以下示例所示。

// Instantiate Del by using a lambda expression.
Del del4 = name =>  { Console.WriteLine("Notification received for: {0}", name); };
//调用委托:
del4("参数");

 

C# 声明、实例化和使用委托的几种方法

标签:

原文地址:http://www.cnblogs.com/coolsxh/p/4914840.html

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