Answer Posted / swap
Boxing is the process of explicitly converting a value type
into a corresponding reference type. Basically, this
involves creating a new object on the heap and placing the
value there. Here is a basic example in C#:
int example = 35;
object i Example = example;
The new reference type includes the value 35.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is interface and abstract class in .net?
Please explain what is the .net framework and how does it work?
What is stored procedure ? how we use it in .NET ?
What is the new three features of COM+ services, which are not there in COM (MTS)
How to load a user control dynamically in runtime?
Explain what inheritance is, and why it's important?
Tell us what is heap and what is stack?
When we go for html server controls and when we go for web server controls?
Explain me what are the deferred execution and the immediate execution in linq?
Explain soap and xml?
Explain security measures exist for .net remoting in system.runtime.remoting?
How to convert a .NET object into COM operabililty?
What is the native image generator?
How does the generational garbage collector in the .net clr manage object lifetime? What is non-deterministic finalization?
Explain cas (code access security)?