Description of C# Concepts: Value vs Reference Types :
C# Concepts: Value vs Reference Types is an article which helps you to know about the difference between the struct and class in C#. Struct is a value type and a class is a reference type. When you create an object for a struct in C#, it allocates a single space in memory for the contents of the object. For a class an object is created in memory and it is handled through a seperate reference rather like a pointer.