What is a Value Class and what is a reference Class in C#?

后端 未结 7 2058
刺人心
刺人心 2020-12-11 17:44

What is the definition of a value class and reference class in C#?

How does this differ from a value type and reference

7条回答
  •  渐次进展
    2020-12-11 18:06

    Value types store the actual data while reference types store references to the data. Reference types are stored dynamically on the heap while value types are stored on the stack.

    Value Types: http://msdn.microsoft.com/en-us/library/s1ax56ch.aspx Reference Types: http://msdn.microsoft.com/en-us/library/490f96s2.aspx

提交回复
热议问题