Answer Posted / mistry
Nullable types are instances of the System.Nullable struct.
A nullable type can represent the normal range of values
for its underlying value type, plus an additional null
value. For example, a Nullable<Int32>, pronounced "Nullable
of Int32," can be assigned any value from -2147483648 to
2147483647, or it can be assigned the null value. A
Nullable<bool> can be assigned the values true or false, or
null. The ability to assign null to numeric and Boolean
types is particularly useful when dealing with databases
and other data types containing elements that may not be
assigned a value.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is dynamic dispatch?
What does dbml mean in texting?
What is the difference between “constant” and “readonly” variables in c#?
What is a byte in c#?
What is a dimensional array?
What is difference between the "throw" and "throw ex" in .net?
Define a manifest in .net?
Can abstract class be instantiated c#?
What is an ienumerable in c#?
What is difference between c sharp and c#?
What do you mean by the delegate in c#?
Can we inherit private class in c#?
Define satellite Assembly?
What is the difference between dll and lib?
What is the difference between finalize() and dispose() methods?