Question 1  of   8

How many times will the loop body execute? try { byte n = byte.MaxValue; while (n <= byte.MaxValue) { unchecked { ++n; } } } catch (Exception ex) { Console.Write(ex.GetType().Name); }

A. 0
B. 1
C. 255
D. Infinite