Login
Remember
Register
Ask a Question
What is Nullable Types in C#?
0
votes
asked
Oct 18, 2019
in
C Sharp
by
Robin
What is Nullable Types in C#?
c#-nullable
nullable-in-c#
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 18, 2019
by
rajeshsharma
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;
...