Tutorialsteacher

Follow Us

00:00
Question #1

What will be the output of the following program?

static void Main()
{
    Func<string, string> greet = delegate (string name)
    {
        return "Hi " + name;
    };

    Console.Write(greet("Sachin"));
}