liuzhixin405 / exercisebook

c#梗概
5 stars 4 forks source link

using System;

namespace ConsoleApp

{

internal class Program

{
    static void Main(string[] args)

    {

        (_ = (Action<string>)((string str) => { Console.Write(str); }))("Are You Ready? ");

        var bs = new
        {             
            Print = (Action<string>)((string str) => { Console.WriteLine(str); })
        };
        bs.Print(" Jack");
        Console.Read();
    }
}

}