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
Why do we use anonymous method in c#?
What is application object in c#?
What is the difference between parse and tryparse in c#?
what is IEquatable
What is for loop in c#?
What does protected internal access modifier mean?
How many types of collections are there in c#?
What is boolean conditions in c#?
What is the difference between “out” and “ref” parameters in c#?
Difference between value and reference type.
Which programming language is best for desktop applications?
What is parameter c#?
Why do we need events in c#?
In languages without exception-handling facilities, we could send an error-handling procedure as a parameter to each procedure that can detect errors that must be handled. What disadvantages are there to this method?
What is method and function in c#?