Question 1  of   14

What is the output of the following program? class Program { delegate void D(int x); static void Main() { D a = x => Console.Write(++x); D b = x => Console.Write(--x); D all = a - b; all(2); } }

A. 1
B. 2
C. 3
D. 31