Probably silly question about Nullable in .NET

Posted by Andrew on Stack Overflow See other posts from Stack Overflow or by Andrew
Published on 2010-04-19T10:18:41Z Indexed on 2010/04/19 10:23 UTC
Read the original article Hit count: 284

Filed under:
|

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.

© Stack Overflow or respective owner

Related posts about c#

Related posts about nullable