Coding practices for C# Nullable type [closed]
I have never used nullable types in my C# code. Now I have decided to change my coding practice by introducing nullable types in my code. What are the major changes in the coding practices should be made while making a transition from normal datatypes to nullable data-types in case of application programming? What are the areas that should be taken care of? What are the points I should always watch out for? Nullable<T> is useful for when you need a possible invalid state for a value type, or if the data is being retrieved from a database that may contain a null value for the column. It is very