using System; public class Test { static int x = 3; static Func s (int y) { return z => x + y + z; } static void Main () { Func p = s(4); Console.WriteLine (p(3)); } }