1
vote
How do I find out if a class is immutable in C#?
Part of the problem is that "immutable" can have multiple meanings. Take, for example, ReadOnlyCollection<T>.
We tend to consider it to be immutable. But what if it's a ReadOnlyCollec …
1
vote
Immutable object pattern in C# - what do you think?
Two other options for your particular problem that haven't been discussed:
Build your own deserializer, one that can call a private property setter. While the effort in building t …
