[Solved] What do we call unchangeable fields of a class?


The word for an object, field or property whose value doesn’t change for its entire lifetime is immutable.

System.String is a classic example — any time you need a new string value, you actually get an entirely new object.

solved What do we call unchangeable fields of a class?