delegate int IncDelegate(int x);
static void TestLambda() {
IncDelegate Inc = x => x + 1;
Console.WriteLine(Inc(2));
}
