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 / gowthami

value types are stored in the memory.
reference types are stored in the heap.
all implicit datatypes,enums,structs are value types.
delegates,objects are reference types..
pointer to the heap where the data is located is maintained
in the stack
when we delete a reference type pointer to the heap is
deleted from the stack

Is This Answer Correct ?    3 Yes 0 No

What is difference between value and reference types ?..

Answer / nitin kumar tomar

Value types directly contain their data while reference
types store a references to variable's value memory
and value types uses stack to store data amd reference
types use heap to store data

Is This Answer Correct ?    2 Yes 0 No

What is difference between value and reference types ?..

Answer / narayansahu

value types are stored on stack whereas reference types are
stored on heap memory.
dim i as integer
or
int i

i here ia a value type and will be stored on stack.
Actually nearly all the basic types are implemented as a
structure.
where as
dim i as new Point()
(assuming point as a class)
i here is a referece variable(pointer) and will be stored
on stack where as The Point object will be created on heap
and i will point to it.

Is This Answer Correct ?    1 Yes 0 No

What is difference between value and reference types ?..

Answer / thirupathi reddy

value refers what is present in the address of the memory
Reference type refers to the address of the memory
Ex:
int a = 10( here the value stores in the address 'a' and the value of that address is 10)
int b = &a (here the variable b refers the address of
the variable a)
here if we print("%d",a) the value prints
here if we print("%d",b) the reference value of a is printed.
this is the difference between "value" and "reference values"

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C Sharp Interview Questions

What is an object and a class?

0 Answers  


Distinguish between the Debug class and Trace class with its functionality?

0 Answers   Siebel,


What?s the top .NET class that everything is derived from?

4 Answers   Hindawi, Siebel, Visual Soft,


What is the use of protected in c#?

0 Answers  


How will U encapsulate button trigger event into text_box event of Pressing Enter key?

3 Answers   TCS,






Explain code compilation in c#.

0 Answers  


List down the access modifiers available in c#?

0 Answers  


What's the difference between abstraction and encapsulation?

0 Answers  


What is the implicit name of the parameter that gets passed into the class set method?

0 Answers  


What is the real use of interface in c#?

0 Answers  


Why do I get a syntax error when trying to declare a variable called checked?

0 Answers  


How does it work?

0 Answers  


Categories