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
Can I recieve both html markup for page and code in the asp.net web page's source code portion in the web browser?
1.can we add connection string in global.asax?????????? 2.what are the default files included when we create new web application????
How does exception management works in ASP.NET?
Why SessionID changes in every request in asp.net?
When using the Pager object, inorder to know which page to go, which property you have to set to grid?
Am not able to move the controls on the form freely in asp.net 3.5 even though I selected the position as relative or absolute for those controls. What should I do to overcome this?
Which protocol is used to call web service?
What is jade template engine?
What are client activated objects and server activated objects?
Describe briefly what is the role of IIS on an ASP.NET application? What does it for the same application?
Differentiate between early binding and late binding.
What is ispostback property?
What are server activated objects?
What is _viewstart?
Briefly describe the role of global.asax?