Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Difference b/w casting and boxing?

Answers were Sorted based on User's Feedback



Difference b/w casting and boxing?..

Answer / linton lazar

Boxing is converting a value type to a reference type
(Object Type).Casting is converting a reference type to a
reference type or a value type as another value type.
int i = 0;
object o = (object)i; //this is boxing
int i2 = (int)o; //this is unboxing.

long l = (long)i; //this is casting.

Is This Answer Correct ?    22 Yes 0 No

Difference b/w casting and boxing?..

Answer / anil kumar

Boxing is Converting to a value type to refrence type and
casting mean convert value type to a another value type.

int a;
object o=(object)a;(Boxing)

int a;
long b=a;(casting)

Is This Answer Correct ?    2 Yes 1 No

Difference b/w casting and boxing?..

Answer / kinjal panchal

Boxing:- Boxing is converting value type to Reference type.
for Example:-

int i=0;
object O=(object)i;

Casting:- Casting is converting value type to another value type
for example:-

int i=0;
long l=(long)i;

Is This Answer Correct ?    1 Yes 0 No

Difference b/w casting and boxing?..

Answer / anand gopal makwa munger

Boxing is the term for turning a value type (int, double, float, Guid, etc.) into a reference type (System.Object, System.String, etc.). Doing this boxing operation allocates memory on the heap (which the garbage collector will eventually need to reclaim).

Casting is taking a type (say, System.Object) and treating it as another type (say, System.String).

Is This Answer Correct ?    0 Yes 0 No

Difference b/w casting and boxing?..

Answer / sridevipc

casting converts value to reference type
boxing converts reference type to value type.



Is This Answer Correct ?    2 Yes 24 No

Post New Answer

More ASP.NET Interview Questions

What are the different authentication modes in asp.net?

0 Answers  


List the advantages and disadvantages of user control an custom control?

0 Answers  


Can the unique key be null?

0 Answers  


How To Generate ConnectionString By Using Notepad??

2 Answers  


Why is validation always done on the server? When does that occur?

2 Answers  


Can you explain how ASP.NET application life cycle and page life cycle events fire?

0 Answers   MindCracker,


Can we make a class with class with same;suppose public class abc { public class abc { } }

1 Answers  


relacement of websevices in .net 3.0?

1 Answers   Mind Tree,


What is the Intermittent crashing of application in production?

0 Answers   Microsoft,


What is http response header?

0 Answers  


Whta are the Various steps taken to optimize a web based application (caching, stored procedure etc.) ?

0 Answers  


I have a webform in asp.net.In that webform there is 2 division class(DIV).in one of the div class there is a text box for enter the id & a button for to check id with database value.My doubt is that how can i appear the 2nd Div contents only when the id is true with database value.if wrong do not display the div . i Want code in c#.

2 Answers  


Categories