What is Boxing and Unboxing?
Answer Posted / kautilya
Boxing is to implicitly converting value type to refrence
type,
int x = 10;
double y = x;
Unboxing is to explicitly converting refrence type to value
type
double y = 10.234;
int x = (int)y;
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
Describe the events in the life cycle of a web application.
Where is asp.net session stored?
Differentiate the session object and application object?
What are the merits and demerits of viewstate?
What are the advantages and limitations of query string?
What are sessions used for?
Fetch one page value to another page without using state-managment ?
What is active web page?
Write a code snippet to implement the indentation in json in web api.
What is a 404 redirect?
Dataset is the disconnected environment. suppose if you are binding records to gridview (disconnected environment) and you are making changes to the the grid but before updating the database if any other user modify the data, how will you avoid such problem?
What is gridview in asp.net?
What is in a session cookie?
What is a form tag?
What are Caching techniques in .NET