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...


What is difference between value and reference types?

Answers were Sorted based on User's Feedback



What is difference between value and reference types?..

Answer / payal


value
this stored actual value

reference
stored the address of the value

value store in stack
reference is stored in heap

the variable which are value type they each time create
their own copy
the variable which are reference type they refer the same
object every time

Is This Answer Correct ?    5 Yes 1 No

What is difference between value and reference types?..

Answer / chaitanya.k

Value types allocates the values in stack
Reference types allocates the value references in Heap

Is This Answer Correct ?    5 Yes 2 No

What is difference between value and reference types?..

Answer / surya

Value Type holds the data within this own memory allocation.

where as Reference Type contains a pointer to another
memory location that holds the data.

Is This Answer Correct ?    1 Yes 0 No

What is difference between value and reference types?..

Answer / shiva charan

Moreover added to the above points

if two reference variables are pointing to the same
location, change in one reference variable will reflect the
other referenc variable.

Is This Answer Correct ?    1 Yes 0 No

What is difference between value and reference types?..

Answer / kartheeksirangipatel

ValueType:
-->Value types holds data directly.
-->Nodefault value for valuetype
-->valuetype stored in stack memory
-->Stack is not accessible to Garbage collector
Ex--->Predefined datatypes
Structures
Enumarator
Reference type:
-->Ref type does not holds the datadirectly
-->Ref type holds the default value
-->ref type will be stored in Heap memory
-->Heap is accessible to garbage collector
Ex--->Arryas
Classes
Objects
Deligates
Interfaces

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More C Sharp Interview Questions

How to call a function when a class implements 2 interfaces and function is present in both interfaces?

2 Answers  


Hi all,I am the beginner. Please tell use of finally block.

6 Answers   IBM,


What is a copy constructor in c#?

0 Answers  


What is a delegate? How can it works?

0 Answers   Siebel,


Should I use double or float?

0 Answers  


What is Bubble Event ?

2 Answers   HCL,


What are extension methods and where can we use them?

0 Answers  


What is difference between c sharp and c#?

0 Answers  


how do you do exception management

4 Answers   Accenture, HCL,


Can you change the value of a constant filed after its declaration?

0 Answers  


Describe the overview of clr integration.

0 Answers  


Is c# a keyword?

0 Answers  


Categories