What is boxing and unboxing?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
What is Separation of Concerns in ASP.NET ASP.Net MVC?
What is gacutil.exe. Where do we store assemblies ?
5 Answers Accenture, BirlaSoft,
What is the need of .Net framework ?
How can I return string result from action in asp.net mvc?
What are the 2 ways of adding constraints to a route?
If you are using components in your application, how can you handle exceptions raised in a component ?
4 Answers Accenture, BirlaSoft,
what is explicit loading?
Iam using an asp.net application . i want to update one of my table in database at 4pm every day how it is possible.
What are scaffold templates in mvc?
what is mean by versioning? Please answer me. Advance thanks.
What are multicast delegates ? give me an example
What is shadowing?