Answer Posted / ardhendu samajdwer
Boxing is the implicit conversion of value type to reference type.
For ex:-
Dim A as integer = 10
Dim B as object
B = A
Or in C#
int A = 10;
object B;
B = A;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are html helpers in asp.net?
How do you secure your connection string information?
How do http sessions work?
What is a 404 redirect?
What is a web pool?
What is difference between asp state management and asp.net state management? How can we pass info between 2 asp.net pages?
What is postback and autopostback in asp.net?
What is a swagger in web api?
Explain the difference between panel and groupbox classes using .net?
Can we have multiple worker process in an ASP.NET application? If so then how it has been handled by application? And who handles it?
What is full form of asp.net?
Define caching.
Define a multilingual website?
What is content place holder?
Explain how asp.net page works?