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 difference between singleordefault and firstordefault?
What is yield c#?
What is data adapter in c#?
What is arraylist class in c#?
What are the differences between static, public and void in c#?
What is the namespace for the thread class?
Ho we can see assembly information?
Explain the three services model (three-tier application). Presentation (ui), business (logic and underlying code) and data (from storage or other sources).
How can I check the type of an object at runtime?
Why do we need constructor in c#?
What are the types of methods in c#?
What benefit do you get from using a primary interop assembly (pia)?
What is binding in c#?
Name any three ways to pass parameters to a method in c#?
If c# destructors are so different to c++ destructors, why did ms use the same syntax?