using System;
public class Program
{
public static void Main()
Action<int,int,int> a1 = (a,b,c) => {};
Action<int,int,int> a2 = delegate {};
}