博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Some examples about how to write anonymous method and lambda expression
阅读量:6279 次
发布时间:2019-06-22

本文共 1505 字,大约阅读时间需要 5 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace LandmaExpressionDemo{    class Program    {        static void Main(string[] args)        {            //anonymous method            Action ac = delegate() { Console.WriteLine("hello delegate"); };            ac();            //Use Action
to create anonymous method with parameters Action
ac2 = delegate(string strMessage) { Console.WriteLine(strMessage); }; ac2("hello world2"); //Pass the anonymous method to another method as parameter ActionHelper(delegate(string strMessage) { Console.WriteLine(strMessage); }); //use landmar expression as parameter to another method ActionHelper(fw => Console.WriteLine(fw)); //Use lambda expression as a delegate Action ac3 = () => Console.WriteLine("hello ac3"); ac3(); } public delegate void DisplayMessageDelegate(string strMesssage); public static void ActionHelper(Action
ac) { ac("hello world3"); } //Useful references //1. http://msdn.microsoft.com/en-us/library/018hxwa8.aspx //2. http://msdn.microsoft.com/en-us/library/bb549151.aspx //3. http://msdn.microsoft.com/en-us/library/bb397687.aspx //4. http://msdn.microsoft.com/en-us/library/bb534960.aspx }}

 

转载于:https://www.cnblogs.com/xiaxi/archive/2011/10/31/2230229.html

你可能感兴趣的文章
聊天界面图文混排
查看>>
控件的拖动
查看>>
svn eclipse unable to load default svn client的解决办法
查看>>
Android.mk 文件语法详解
查看>>
QT liunx 工具下载
查看>>
内核源码树
查看>>
Java 5 特性 Instrumentation 实践
查看>>
AppScan使用
查看>>
Java NIO框架Netty教程(三) 字符串消息收发(转)
查看>>
Ucenter 会员同步登录通讯原理
查看>>
php--------获取当前时间、时间戳
查看>>
Spring MVC中文文档翻译发布
查看>>
docker centos环境部署tomcat
查看>>
JavaScript 基础(九): 条件 语句
查看>>
Linux系统固定IP配置
查看>>
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
项目经理笔记一
查看>>