.Net Tips – making a serializable immutable struct
As you might know already, an object is immutable if its state doesn’t change once it has been created. In C# the most used immutable type is string, this means every time you modify the value of a string variable you are actually creating a new string object and updating the reference of the variable …
.Net Tips – making a serializable immutable struct Read More »