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 getenumerator?
how to sort an array in c#
What is interface inheritance in c#?
What is the difference between var and dynamic types in c# 4.0?
What is the difference between System.console.WriteLine() and System.console.Write() function?example?
Why do we use lambda expression in c#?
What do you mean by hashtable c#?
What is namespace in oops?
What is get set in c#?
What is datetime parse in c#?
List down the differences between public, static and void keywords?
What is the property of class?
What are the types of attributes in c#?
What is extension method in c# and how to use them?
What is generic delegates in c#?