DotNet Interview Question 4 of 100:
What is the difference between a Value Type and a Reference Type in CSharp?
Answer:
Value types are stored in the Stack and contain the actual data. Reference types are stored in the Heap and contain a reference to the data.