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 Boxing and Unboxing?

Answer Posted / kautilya

Boxing is to implicitly converting value type to refrence
type,

int x = 10;
double y = x;


Unboxing is to explicitly converting refrence type to value
type

double y = 10.234;
int x = (int)y;

Is This Answer Correct ?    8 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is asp.net globalization?

1032


What do you mean by authentication?

1120


Explain what are the advantages of asp.net mvc framework? : asp.net mvc

1187


Can asp.net work on an nt server?

1089


What is form submit?

1010


What is the difference between c# and .net?

1101


Explain the main function of razor in asp.net? : asp.net mvc

1131


To display data in a Repeater control which template you provide?

1092


What I need to create and run an asp.net application?

1016


Can you explain one critical mapping? Performance issue which one is better? Whether connected lookup tranformation or unconnected one?

1319


In early binding will the method invoked on com component will verify it?s existance in the system or not ?

2694


I am trying to implement sorting facility from client side code in GridView Control. So how can I fill up an Array inside client side code (using JavaScript), i want to assign my DataSet object declared and filled up on Server side(in code behind) to the array (on client side)

2048


What is master page in dtp?

1048


How can we make sure that Web API returns JSON data only?

1077


What asp.net control can embed xaml into asp.net pages?

1024