Essential Types in .NET Part-2
Nullable Value Types Nullable<T> -It can have a value or it can be null The Problem with Nulls What is new? -NullReferenceException is a bug. -Provide syntax to identify when we expect a null -Inconsistency with value types -Make the default expectations of ref types not null -Reduce likelihood of NullReferenceExceptions Enable by project for… Read More »