What is the Difference between value and reference type?
Answer Posted / rita ghosal
REFERENCE TYPE=In contrast to value types, the value of a reference types is allocated on the heap. Another name for a reference type, that you might be more familiar with, is an object. Reference types stores the reference to the data, unlike value types, that stores the value. To demonstrate the difference between a reference type and a value type, let's look
VALUE TYPE=The value of value types are stored on the managed stack, and can be used directly. This means that the value is stored, and not a reference to the value. This also means that each value type has its own copy of the data. Reference Types on the other hand has a reference to the data, and several variables can reference the same data.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is array and its types in c#?
What is the difference between new and override in c#?
What is the use of xmlserializer?
What is xml document how do you open it?
What is the difference between public, static, and void?
What is private and shared assembly?
Is 0 an unsigned integer?
What is int32?
What is action c#?
What are the properties of c#?
What are the benefits of using generics?
How do I do a case-insensitive string comparison?
What is unrecognized escape sequence in c#?
What is the correct way of declaring an xml namespace?
What is eager loading in c#?