Майкрософт считает что readoly для reference типов не имеет смысла
От: vladpol Украина http://vlad-mislitel.livejournal.com/
Дата: 02.08.17 09:27
Оценка:
Коллега откопал следующее правило анализатор

CA2104: Do not declare read only mutable reference types
Cause
An externally visible type contains an externally visible read-only field that is a mutable reference type.
Rule Description
A mutable type is a type whose instance data can be modified. The System.Text.StringBuilder class is an example of a mutable reference type. It contains members that can change the value of an instance of the class. An example of an immutable reference type is the System.String class. After it has been instantiated, its value can never change.
The read-only modifier (readonly in C#, ReadOnly in Visual Basic, and const in C++) on a reference type field (pointer in C++) prevents the field from being replaced by a different instance of the reference type. However, the modifier does not prevent the instance data of the field from being modified through the reference type.
Read-only array fields are exempt from this rule but instead cause a violation of the CA2105: Array fields should not be read only rule.
How to Fix Violations
To fix a violation of this rule, remove the read-only modifier or, if a breaking change is acceptable, replace the field with an immutable type.


С одной стороны, как бы логично, но с другой как бы противоречит практике .....
С уважением, Владислав Полищук
 
Подождите ...
Wait...
Пока на собственное сообщение не было ответов, его можно удалить.