using System; using System.Collections.Generic; class Test { public void Foo (Func converter) { } } public class C { public C (IEnumerable t) { new Test ().Foo (a => a); } } class M { public static void Main () { } }