Saturday, July 05, 2025 16:30

Archive for 2017

Value and reference types

Tuesday, January 3rd, 2017

Variables in C# can be categorized in two main types: value and reference types. What is the difference between them?

Value types are stored in a special area which is called the execution stack and their value is directly stored and accessed.… Read more