IT Placement Papers Microsoft Technologies ASP.NET
This category contains ASP.NET Interview Questions and Answers |
What is the difference between boxing and unboxing ?
|
|
|
|
|
Boxing allows us to convert value types to reference types. Basically' the runtime creates a temporary reference-type box for the object on heap.
Eg:
int i=20;
object o=i;
Only registered users can write comments. Please login or register.
|