Answer Posted / monu
Boxing is an implicitly method which is use to convert the
value type datatypes.
Unboxing is an Explicitly.
Int32 x = 20; object o = x ; // Implicit
boxing
Int32 y = 20;
object obj = (object) y; // Explicit Boxing
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain how is a property designated as read-only?
List the advantages and disadvantages of user control an custom control?
What is server side in asp.net?
How do you store a value in viewstate and retrieve them?
What do you mean by serialize and marshalbyref?
How to use multiple scriptmanager controls in a web page?
What is http only cookie?
Is it true that a Web service must be written in .NET or not?
How can we create a website?
What is asp according to you?
What is csrf attack in asp.net?
Where is http session stored?
Which two new properties are added in asp.net 4.0 page class?
Is asp.net still used?
What is syntax code to send email from an asp.net application?