What is the Difference between value and reference type?
Answer Posted / nithya
value type variable :
If the valuetype variable data is copied to another
variable, its actual data is not effected.
eg., for valuetype variables are
char,boolean,structures,enumerations .
eg.
dim m.n as integer
m=100
n=200
reference type variable:
variable doesnt stores the actual data, instead it has a
pointer . that pointer will points to the actual data
location
eg., for reference type variabls are array,class .
eg.
dim a,b as integer
a=5
assume, a is in the memory locatyion of 1001.
that address value will be stored to the another variable
say b whose address is 1020
| Is This Answer Correct ? | 6 Yes | 9 No |
Post New Answer View All Answers
What is the role of the datareader class in ado.net connections?
What is parallel foreach in c#?
What are Indexers in C#?
What do you mean by expression tree?
Explain the role of the datareader class in ado.net connections?
Why do we use interfaces in c#?
What are class fields?
How many static constructors are allowed in a class?
Explain the difference between abstract class and interface.
Does main have to be static c#?
What is difference between a function and a method?
What is the difference between interface and abstract class in c#?
Should I make my destructor virtual?
What is the use of 0 in c#?
What is the difference between disposing of () and finalize() methods in c#?