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 the difference between rest and restful?
Explain code snippet to register exception filters from controller?
Why session is necessary in web application?
Does google crawl redirects?
Define asp.net caching?
Why do we need master page in asp.net?
What is cookieless session id explain in brief?
Define tracing.
Why is it preferred to not use finalize for clean up?
What are the advantages of asp.net?
Is LINQ performance wise better or using sqlcommand?
Define caching.
Explain cookies with example.
How do you hide the columns?
Explain Apache web servers ? How can you get ASP.NET running in Apache web servers - why should you do this?