What is boxing and unboxing ?
Answer Posted / kirti
Boxing:
The conversion of a value type instance to an object, which implies that the instance will carry full type information at run time and will be allocated in the heap. The Microsoft intermediate language (MSIL) instruction set's box instruction converts a value type to an object by making a copy of the value type and embedding it in a newly allocated object.
Un-Boxing:
The conversion of an object instance to a value type.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Garbage collector?s functionality on unmanaged code ?
define client activated objects (cao)?
Will clr handle unmanaged code or not?
What are the different types of channels used by .net remoting and which is the best one?
What are the difference between static assemblies and dynamic assemblies?
What is objref object in remoting?
What is the purpose of strong name?
Define the lease of the object?
Elaborate the term WebService and how it differ from Remoting?
What is asynchronous programming?
What do mean by remotable objects in .net remoting?
What are the situations you will use singleton architecture in remoting ?
What are the channels in .net remoting?
What are the security measures exist for .net remoting in system.runtime.remoting?
Write a example code for remoting?