How do I find out if a class is immutable in C#?
|
|
There is In reality, you would have to check the A classic example here would be string... everyone "knows" that It is so hard to define immutability given this, let alone robustly detect it... |
||||||||||
|
|
|
To my knowledge, unless it's explicitly documented, there is no way to determine whether a class is immutable or not in C#. You can, however, use Reflection to check for the existence of Setters on properties; however, lack of setters does not guarantee immutability as internal state may change the values of these properties whether you can explicitly set them or not. Additionally, checking for the 'IsInitOnly' flag for all the class's fields, again using Reflection, might indicate immutability, but it doesn't guarantee it. Edit: Here's a similar question, asked regarding the Java language, whose answer also applies here. |
||
|
|
|
|
You cannot, you can only guess. If all fields are readonly the the instances will be immutable once the constructor finishes. This is important, if you had the following it would appear mutable to the instance bar.
However if a field on the supposedly immutable class was a collection (and was not read only) then calling the class immutable would likely be incorrect (since it's state can change) Note that even if all fields are readonly reflection is allowed to modify the fields. Checking for no setters on properties will be a very poor heuristic indeed. |
||
|
|
|
|
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 ReadOnlyCollection<SomethingChangeable>? Also, since it's really just a wrapper around an IList I pass in to the constructor, what if I change the original IList? A good approach might be to create an attribute with a name like ReadOnlyAttribute and mark classes you consider to be read-only with it. For classes you don't control, you can also maintain a list of known types that you consider to be immutable. EDIT: For some good examples of different types of immutability, read this series of postings by Eric Lippert: http://blogs.msdn.com/ericlippert/archive/2007/11/13/immutability-in-c-part-one-kinds-of-immutability.aspx |
|||
|
|
|
|
Via code, I'm not sure, but afaik if you look at the IL of another immutable type, such as a string you will not see a |
||||
|
|
|
The only help you get from the runtime is if all the fields in the class are annotated with "readonly". [Edit, see @ShuggyCoUk] And even then the CLR will let you write over it. I just verified it. Ugh. You can get the FieldInfo objects from the class via reflection and check IsInitOnly. |
|||
|
|
