C# Lambda表达式

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MyDelegate
{
    delegate void Del(string str);

    class Program
    {
        static void Main(string[] args)
        {
            Del d5 = msg =>
                {
                    Console.WriteLine(msg);
                };
            d5("测试");
            
        }      
    }
}

多个参数

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MyDelegate
{
    delegate void Del(string str,int i);

    class Program
    {
        static void Main(string[] args)
        {
            Del d5 = (msg,iii) =>
                {
                    Console.WriteLine(msg);
                    Console.WriteLine(iii.ToString());
                };
            d5("测试",12);            
        }      
    }
}
posted on 2013-11-10 12:43  神秘藏宝室  阅读(179)  评论(0编辑  收藏  举报

 >>>转载请注明出处<<<