using System;
public class Program
{
public static void Main()
Action<int, string> c = null;
c(1, "");
Action<int, bool> d = null;
d(1, true);
}