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
Define c# delegate?
Are c# strings immutable?
What floating point types is supported in C#?
When was .net linq added?
How many types of namespaces available in version4?
How do I create a single-file assembly?
Explain how obfuscator works in .net
windows c# using datagridview in edit form sql server
Can we inherit partial class in c#?
What is executescalar in c#?
What does an indexer do?
What are Types of assemblies that can be created in dotnet
How to Show Message box in Metro Style App?
How to find the current application file path while runtime?
What is a function c#?