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 use of global.asax file?
What is session id in web application?
Where sessions are stored?
Define a static class?
Explain diff. Betn dataset and recordset?
What is the best Macanism to clear the Cache in asp.net
What is odata in web api?
Why do I get error message "could not load type" whenever I browse to my asp.net web site?
Can we have multiple master pages in asp net?
Which namespace is used by ado.net?
Which methods validate all the controls on a page?
How dataadapter.fill works?
Where session id is stored?
What is the difference between asp.net mvc and asp.net webforms? : asp.net mvc
Explain the steps to be followed to use passport authentication.