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
Define transparent caching with aop?
Explain the difference between asp.net mvc and asp.net webforms? : asp.net mvc
If you are using two select queries and retrieving data. how do you access second query's result set using data reader?
What are the disadvantages of asp.net?
What is session authentication?
When Cookies are expired in ASP.NET?
Define reflection in .net?
What is web router?
What are session and cookies?
Can action method static?
Explain about ASP.NET?
Explain how viewstate is being formed?
What is a url string?
What is difference between asp state management and asp.net state management? How can we pass info between 2 asp.net pages?
Describe how to implement globalization and localization in the use interface in .net.