Why anonymous types do not have property setters?
var a = new { Text = "Hello" };
a.Text = "World"; //error
|
Why anonymous types do not have property setters?
| ||||
|
feedback
|
|
Anonymous types are immutable by design. Anonymous types are meant to hold values, and a type that represents a value should not be mutable. Also, it would make them unreliable in a dictionary, as the hashcode could change after creation. | |||||||||
feedback
|