You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
381 B
C#

/*
* C# Program to Illustrate Actions
*/
using System;
class Program
{
static void Main()
{
Action<int> action1 =(int x) => Console.WriteLine("OUTPUT {0}", x);
Action<int, int> action2 =(x, y) => Console.WriteLine("OUTPUT {0} and {1}", x, y);
action1.Invoke(1111);
action2.Invoke(200, 3000);
Console.Read();
}
}