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
Explain how do assemblies find each other?
Can I write il programs directly?
What's a windows process in .net?
What is connection pooling and how do you make your application use it?
Types of evidence in .net with context to CAS
Explain about managed heap?
Which dll is required to translate xml to sql in internet information server (iis)?
Explain about .net?
Describe session handling in a webform, how does it work and what are the limitations?
What is the use of gacutil.exe?
What is the use of system.diagnostics.process class in .net?
Explain me why do we use msmq?
What is the benefit of .net core?
Do you know what is linq?
How anonymous method is different from a lambda expression?