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
Why Unload event of MasterPage Calls first in ASP.net ?
Explain the difference between an exe and a dll?
Web API supports which protocol?
Can you explain the importance of finalize method in .net?
What is the difference between page.registerclientscriptblock and page.registerstartupscript?
1.how to encrpt query string in asp.net? 2.there are 10000 records then i wnat display 5000 records one gridview and 5000 records another grid view what is the process?
Can you explain autopostback?
Is viewstate enabled by default?
What is Web Server Control Templates.?
Disable browser cache for entire ASP.NET website?
What is protected configuration?
What are Session states available and its Uses?
What is caching? Explain.
What is a web farm?
What is role-based security in asp.net?