.NET & C# ยท C#
What is a common mistake with value types and reference types in C#?
A common mistake is assuming assignment always shares the same object. Assigning a value type copies its value, while assigning a reference type copies the reference.