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 is asp.net file?
What I need to create and run an asp.net application?
What are the page life cycle events?
Is it possible for me to change my aspx file extension to some other name?
What is meant by web application?
What are the types of authentication in asp.net?
Which adapter should you use, if you want to get the data from an access database?
What are the Types of session management in ASP.NET
How can we implement a identity (sql server) call in an asp.net page?
What is the difference between session and viewstate?
How to find last error which occurred in Asp.net ?
Should I delete cookies?
What is the use of view state?
In which situation can you not use a viewstate?
How do you secure your configuration files to be accessed remotely by unauthorized users?