Answer Posted / rahultripathi
There is two type datatype available Value and reference
type . value are stored in stack and reference type used
in heap . when we copy data from stack memmory to heap it
call Boxing .
Int32 x = 10; object o = x ; // Implicit
boxing
Int32 y = 10;
object obj = (object) y; // Explicit Boxing
Rahul Tripathi
raultripathi@myway.com
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What are validator? Name the validation controls in asp.net? How do you disable them? Will the asp.net validators run in server side or client side? How do you do client-side validation in .net? How to disable validator control by client side javascript?
How ViewstateMac works?
What are ASHX files?
Define dll hell?
What is Dynamic Web and discuss its usage with the help of real life examples?
Explain some of the major built-in objects in asp.net
If I am developing an application that must accomodate multiple security levels though secure login and my asp.net web application is spanned across three web-servers (using round-robin load balancing). What would be the best approach to maintain login-in state for the users?
What are sessions and cookies?
What is the use of web.config and machine.config files?
By default, Web API sends HTTP response with which of the following status code for all uncaught exception?
If you are using two select queries and retrieving data. how do you access second query's result set using data reader?
What is anonymous authentication?
How to change Master page in ASP.Net using code?
Why we use content place holder in asp.net?
What does the hotspot class in .net do?