Probably silly question about Nullable in .NET
- by Andrew
Here is example from J. Richter book "CLR via C#":
Nullable<Int32> y = null;
How exactly this works? Nullable is a struct, and I can not figure out is this compiler special support or implicit boxing of null value or something else.