What is boxing and how it is done internally?
Answer Posted / krishna prasad
assigning a value type to objects(reference type)
the boxing occurs
int iValue = 20
object objValue = iValue (boxing)
reference types are stored on heap (all objects,strings)
value types are stored on stack (int,char,bool,etc..)
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is the asp.net control toolkit?
How asynchronous call can be implemented using delegates?
How long does an http session last?
Whats the difference between abstract factory pattern and factory pattern?
Explain Areas in MVC?
What are the differences between primary foreign and unique keys?
Explain how dot net compiled code will become platform independent?
Is asp.net and .net the same?
What are navigation controls? How many navigation controls are there in ASP.NET 4.0?
Explain login controls.
What are query strings used for?
What is query string in asp.net?
What is server side session?
Which method do you use to enforce garbage collection in .net?
What are early binding and late binding.