pbazeliuk.com
C# Value and Reference Types - Bazeliuk Petro
It is important to understand that C# distinguishes between two categories of data type — value and reference types.  The main difference is that a value type stores value directly and reference type stores a reference to its value. Value types are stored in the stack, and reference types are stored in the managed heap. […]
pbazeliuk