C#基础 func int类型参数与string类型返回值

版权声明:知识来源于智慧与善良并存的师傅们,亦当回报给智慧与善良并存的人们。 https://blog.csdn.net/yushaopu/article/details/82390408

慈心积善融学习,技术愿为有情学。善心速造多好事,前人栽树后乘凉。我今于此写经验,愿见文者得启发。


  •    .NET Framework : 4.6.1
  •                           ide : visual studio 2017 community
  •                             os : win7 x86_64
  •            type setting : markdown
  •                         blog : https://blog.csdn.net/yushaopu
  •                     github : https://github.com/GratefulHeartCoder

code

using System;

namespace ConsoleApp
{

    class Program
    {
        public static string SayHello(int num)
        {
            Console.WriteLine("SayHello");
            return "Hello";
        }

        public static string SayWorld(int num)
        {
            Console.WriteLine("SayWorld");
            return "World";
        }

        static void Main(string[] args)
        {
            // 参数类型int 返回值类型string
            Func<int, string> test = SayHello;
            test += SayWorld;

            // 注意看输出的内容
            Console.WriteLine(test(1));

            Console.ReadKey();
        }

    }

}

result

SayHello
SayWorld
World

reference

https://www.cnblogs.com/LipeiNet/p/4694225.html

resource


感恩曾经帮助过 心少朴 的人。
C#优秀,值得学习。.NET Core具有跨平台的能力,值得关注。
Console,WinForm,WPF,ASP.NET,Azure WebJob,WCF,Unity3d,UWP可以适当地了解。
注:此文是自学笔记所生,质量中下等,故要三思而后行。新手到此,不可照搬,应先研究其理象数,待能变通之时,自然跳出深坑。

猜你喜欢

转载自blog.csdn.net/yushaopu/article/details/82390408