0 votes
in C Sharp by
What is Nullable Types in C#?

1 Answer

0 votes
by
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 questions

0 votes
0 votes
asked May 6, 2020 in C Sharp by SakshiSharma
0 votes
asked Oct 18, 2019 in C Sharp by Robin
...