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
Is Multiple-inheritance supported by c#?
Are structs faster than classes?
What is managed code?
What is oledb in c#?
What is type class in c#?
Explain the difference between “system.array.clone()” and “system.array.copyto()” in c#?
Can you describe iuknown interface in short?
What type of data type conversion happens when the compiler encounters the following code?
Is a games console a computer?
What is class method?
What does the dispose method do with the connection object?
What is sqlcommand in c#?
How to force my .net app to run as administrator on windows 7?
What is literal in c#?
if a base class has a number of overloaded constructors, and an inheriting class has a number of overloaded constructors; can you enforce a call from an inherited constructor to a specific base constructor?