Answer Posted / sivaprasad
Boxing is nothing but converting value type to reference type
Example:int i =10;
object o = i; \\Boxing which can happen implicitly
int j = (int)o; \\Unboxing Converting Referrenvce Type
to value type.
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
What is an imagemap in asp.net?
What is the difference between WindowsDefaultLocation and WindowsDefaultBounds?
Describe the method to create a permanent cookie?
What is aspect-oriented programming?
What is server components?
Which is faster viewbag or viewdata?
Where session id is stored?
Disable Mouse right click on web page in asp.net?
In What Order Do The Events Of An Aspx Page Execute. As A Developer Is It Important To Undertsand These Events?
Which object is used to encapsulate the state of the client and the browser in ASP.NET?
What are Master Pages in ASP.NET? or What is a Master Page?
Is oauth for authentication or authorization?
What is the difference between application state and session state in asp net?
Explain the use of dataadapter.
What is the request flow used for asp.net mvc framework? : asp.net mvc