Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is Nullable Type in c#

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


Please Help Members By Posting Answers For Below Questions

What is dynamic dispatch?

1009


What does dbml mean in texting?

970


What is the difference between “constant” and “readonly” variables in c#?

1058


What is a byte in c#?

1029


What is a dimensional array?

922


What is difference between the "throw" and "throw ex" in .net?

1038


Define a manifest in .net?

1059


Can abstract class be instantiated c#?

982


What is an ienumerable in c#?

1050


What is difference between c sharp and c#?

948


What do you mean by the delegate in c#?

958


Can we inherit private class in c#?

989


Define satellite Assembly?

1062


What is the difference between dll and lib?

1028


What is the difference between finalize() and dispose() methods?

1024