码迷,mamicode.com
首页 > 其他好文 > 详细

LINQ

时间:2016-07-14 07:07:34      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

1.演化

技术分享
//1
delegate void FunctionPointer(string str);
static void Main(string[] args)
{
    FunctionPointer fp = HelloWorld;
    fp("Hello World");
}

static void HelloWorld(string str)
{
    Console.WriteLine(str);
    Console.ReadLine();
}
//2
delegate void FunctionPointer(string str);
static void Main(string[] args)
{
    FunctionPointer fp = delegate(string s)
    {
        Console.WriteLine(s);
        Console.ReadLine();
    };
    fp("Hello World!");
}
//3
delegate void FunctionPointer(string str);
static void Main(string[] args)
{
    FunctionPointer fp = a => Console.WriteLine(a);

    fp("Hello World");
    Console.ReadLine();
}
//4
static void Main(string[] args)
{
    Action<string> fp = s => Console.WriteLine(s);
    fp("Hello World!");
    Console.ReadLine();
}
View Code

 

LINQ

标签:

原文地址:http://www.cnblogs.com/revoid/p/5668808.html

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