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 a 307 redirect?
In a page I have gridview with options of select and delete using hyperlink when I am selecting any one of then it has to open another page how can it?
What tags do you need to add within the asp:datagrid tags to bind columns manually? Give an example.
What is cookies cache and session?
What is the use of placeholder control? Can we see it at runtime?
What is the difference between web.config and machine.config in ASP.NET?
Which asp.net objects encapsulate the state of the client and the browser?
Explain the difference between debug.write and trace.write? When should each be used?
Can viewstate be accessed in another page?
Why we go for mvc instead of asp.net? : Asp.Net MVC
Explain the Order of events in an asp.net page?
What is the compiled object?
Define machine.config in .net?
Why is xap important?
What are the types of authentication in asp.net?