public static mutable fields of classes which are accessed directly should be protected to the degree possible. This can be done by
reducing the accessibility of the field or by changing the return type to an immutable type.
This rule raises issues for public static fields with a type inheriting/implementing System.Array or
System.Collections.Generic.ICollection<T>.
public class A
{
public static string[] strings1 = {"first","second"}; // Noncompliant
public static List<String> strings3 = new List<String>(); // Noncompliant
// ...
}
public class A
{
protected static string[] strings1 = {"first","second"};
protected static List<String> strings3 = new List<String>();
// ...
}
No issue is reported:
System.Collections.ObjectModel.ReadOnlyCollection<T> System.Collections.ObjectModel.ReadOnlyDictionary<TKey, TValue> System.Collections.Immutable.IImmutableArray<T> System.Collections.Immutable.IImmutableDictionary<TKey, TValue> System.Collections.Immutable.IImmutableList<T> System.Collections.Immutable.IImmutableSet<T> System.Collections.Immutable.IImmutableStack<T> System.Collections.Immutable.IImmutableQueue<T> readonly and is initialized inline with an immutable type (i.e. inherits/implements one of the types in the
previous list) or null.