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 ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is Razor View Engine
Describe how ASP.NET maintains process isolation for each Web application?
What is jade template engine?
What is viewstate in asp net with example?
How many types of validators are there in asp net?
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 the differences between a primary key and a unique key in sql server?
What is difference between viewstate and session in asp net?
How will you do windows authentication and what is the namespace? If a user is logged under integrated windows authentication mode, but he is still not able to logon, what might be the possible cause for this? In ASP.Net application how do you find the name of the logged in person under windows authentication?
How are sessions stored?
Describe session handling in a webfarm, how does it work and what are the limits?
What is data control in asp.net?
How to make paging concepts in datagrid in ASP.NET?
What is a user session?
List down the sequence of methods called during the page load.