using System; class nest { public static void Main () { int a = 5; Func<int,int> b = (x => a*x); { a = 7; Console.WriteLine(b(3)); } } }