Hemant Mehra

Hemant Mehra

  • NA
  • 347
  • 0

why we use delegate Func<T>

Jul 28 2014 9:14 AM
why we use delegate Func<T> there...
using System;

class Test
{
   static void Main()
   {
      Func<string> func = GetGreeting; // no parameters but returns a string
      Console.WriteLine(func());
      Console.ReadKey();
   }

   static string GetGreeting()
   {
      return "Hello Jitendra :)";
   }
}

Answers (1)