What is Nullable Type in C#?
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;
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
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.
need an explanation for this answer? contact us directly to get an explanation for this answerEg: int? nullvariable = null;