class Program { public delegate bool Test( int x ); public static bool f( int x ) { return true; } public static void Main() { Test test1 = f; } }