using System; public class TheClass { static void Foo (T t, Func f) { Func> d = () => { if (t != null) { return () => f (t); } return null; }; d (); } public static void Main () { Foo (1, null); } }