Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21
Angualr Top questions

Details



Peter Agyekum What is Nullable Types in C#? Variable types does not hold null values so to hold the null values we have to use nullable types. So nullable types can have values either null or other values as well. Eg: Int? mynullablevar = null;
Related Topics