In C#, what is the default value of a class instance variable of type int??
int?
For example, in the following code, what value will MyNullableInt
MyNullableInt
var x = default (int?); Console.WriteLine("x == {0}", (x == null) ? "null" : x.ToString());