What is boxing and unboxing?

Answers were Sorted based on User's Feedback



What is boxing and unboxing?..

Answer / sri4u_926

Boxing: Converting of Stack based values into the Heap
Based values i.e coverting of a value type to a reference
type is the Boxing.

UnBoxing is vice versa.

Is This Answer Correct ?    41 Yes 1 No

What is boxing and unboxing?..

Answer / maloy.adhikari

Converting a value type to reference type is called Boxing
and Converting reference type of value type is Unboxing.

int i = 1;
object o = i; // boxing
int j = (int)o; // unboxing

Is This Answer Correct ?    6 Yes 0 No

What is boxing and unboxing?..

Answer / gowtham

Boxing: To convert value type to reference type.

UnBoxing: To convert reference type to value type.

Is This Answer Correct ?    0 Yes 0 No

What is boxing and unboxing?..

Answer / zeenat

Boxing:- Creating a Instance of a object and passing the
value of a variable to that object
dim x as integer
dim y as object
y = x - Boxing process

x = y - unboxing

Unboxing :- passing a value of a object to the varible

Is This Answer Correct ?    13 Yes 17 No

Post New Answer

More Dot Net Framework Interview Questions

What is the difference between ViewData, ViewBag and TempData?

0 Answers   Wipro,


what is .NET ?

18 Answers   TCS,


What is html.renderpartial?

0 Answers  


what is minimum requirement for entity framework applications to run?

0 Answers   Microsoft,


What are the components required to create a route in mvc?

0 Answers  


how can you tell ef to have a different table or column name than that defined for the class?

0 Answers   Microsoft,


Is .net core faster than .net framework?

0 Answers  


What is the significance of nonactionattribute?

0 Answers  


What is the need of Action Filters in ASP.Net MVC

0 Answers   B-Ways TecnoSoft,


Why do you need to box a primitive variable

1 Answers  


What is edm (entity data model)? : Entity framework

0 Answers  


What is Layout in ASP.Net MVC?

0 Answers   B-Ways TecnoSoft,


Categories