What is Boxing and Unboxing?

Answer Posted / kumaresh

BOXING: Converting value type to referenc type.
Here we go with an example,

ArrayList instance = new ArrayList()
//In the above line of code,ArrayList is a reference
type.Add some items to the arraylist. For example,

instance.Add(1);
instance.Add(100);
instance.Add(3);
//3 items added to the arraylist.
//Integer valuee 3 is value type.Adding 3 to the reference
type(here it's arraylist) is boxing.
i.e., Converting value type to referenc type.

UNBOXING:Converting Reference type to value type.
Below is an example, retrives the items from the
arraylist.

foreach (int item in arrayList)
Console.WriteLine(item);

Here arraylist(referenec type) will have 3 values in the
list, which we added above.
Adding this arraylist items to an int variable[here int
variable is "item"] is unboxing.
i.e.,converting the reference type to value type.

Hope you would have understood.
Thanks

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which data type does the rangevalidator control support?

705


Describe the master page.

735


How do you declare delegates and are delegates and events one and the same and explain how do you declare delegates and invoke them ?

3726


What is the most appropriate lifetime for a database connection/orm context in an asp.net mvc application? : Asp.Net MVC

732


Why select Web API?

717


If you want to write your own dot net language, what steps you will you take care?

711


Which is better session or viewstate?

684


Tell me the code snippet to show how we can return 404 errors from HttpError?

1014


How can you display all validation messages in one control?

740


What is the life-span of the items in the viewstate?

704


Define transparent caching with aop?

722


Explain Areas in MVC?

816


witch is the best insistute in sharpoint course.what abt future of share point course.

2941


Describe the disadvantage of cookies.

762


Explain Life cycle of ASP.NET page when a request is made.

931