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
When do we use delegates in your remoting applications?
Define singlecall activation mode in .net remoting?
what is Client-activated object in remoting?
Which Namespaces is used to achieve the Remoting?
Explain how can you automatically generate interface for the remotable object in .net with microsoft tools?
What is asynchronous programming?
What are the situations you will use singleton architecture in remoting ?
What are the types of remoting?
What is Remoting?
Explain how to perform remoting?
Explain Singleton design pattern of Remoting?
Is it a good design practice to distribute the implementation to remoting client?
What is the purpose of strong name?
Explain how does assembly versioning in .net prevent dll hell?
Explain marshalling and its types in .net remoting