Basically, I have the following:
protected static readonly FieldInfo SpecialField = FindSpecialField();
FxCop is complaining to me though that I should not make a field readonly if it is mutable because the members can be changed. Are FieldInfo and PropertyInfo immutable or mutable. Basically, can I suppress this message?