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...

can we assign null value to value type in c#?

Answer Posted / aditya

Nullable type is introduced in .NET 2.0. Before 2.0 it was
not possible to assign null to value types.
This was possible with the introduction of Generics in 2.0
and the it would be something like this...

System.Nullable<int> x = new System.Nullable<int>;

or

int? salary = null (new type modifier in 2.0)

Is This Answer Correct ?    30 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between list and ilist in c#?

996


What is lambda expression in c#?

1013


What is dll file in c#?

1019


Explain “static” keyword in c#?

914


How to Install uninstall assemblies into GAC?

986


Can properties be overloaded in c#?

1015


write a program to find the biggest palindrome in the given string

1016


Explain what are the steps for creating clr trigger?

959


Which of these statements correctly declares a two-dimensional array in c#?

1103


How main method is called in c#?

1000


What is executescalar in c#?

899


What is the main method?

991


Does the system.exception class have any cool features?

1077


What is type class in c#?

1095


Which program construct must return a value?

1123