18
votes
Hidden Features of C#?
Not hidden, but I think that a lot of developers are not using the HasValue and Value properties on the nullable types.
int? x = null;
int y;
if (x.HasValue) …
