Q:

What is Nullable Type in C#?

0

What is Nullable Type in C#?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Variable types do not hold null values so to hold the null values we have to use nullable types. nullable types can have values either null or other values as well.
Eg: int? nullvariable = null;

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Top 100 C# interview questions and answers 2022

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
What do you mean by boxing and unboxing in C#?... >>
<< What are the types of delegates in C#?...