Hi
Please explain me the following code // I am declaring a Action called example3 with no parameter but I am calling method "Para" which take string as parameter and return string as output but still works. Please explain the code below
Action example3 = () => Para("irfan");
example3.Invoke();
private string Para(string s)
{
Console.WriteLine("This is how I write Code {0}", s);
}
Go to the complete details ...