WHAT IS BOXING? HOW WE CAN USE IT?

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


Please Help Members By Posting Answers For Below Questions

Why Unload event of MasterPage Calls first in ASP.net ?

765


Explain the difference between an exe and a dll?

698


Web API supports which protocol?

1098


Can you explain the importance of finalize method in .net?

795


What is the difference between page.registerclientscriptblock and page.registerstartupscript?

638


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?

1882


Can you explain autopostback?

711


Is viewstate enabled by default?

709


What is Web Server Control Templates.?

773


Disable browser cache for entire ASP.NET website?

859


What is protected configuration?

818


What are Session states available and its Uses?

1923


What is caching? Explain.

720


What is a web farm?

756


What is role-based security in asp.net?

708