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
Explain about Serialize and MarshalByRef?
What is c# used for in the industry?
Can you use all access modifiers for all types?
What are generic types?
What is datatable in c#?
how to implement a web service in .net
What is console writeline in c#?
What is difference between ilist and list in c#?
Can a struct inherit from an interface in c#?
What is dependency injection in simple words?
What are the steps for creating clr trigger
What is difference between association, aggregation and inheritance relationships?
What is for loop in c#?
What are data types with examples?
Can you explicitly call a destructor?