== Why is this an issue? ``++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++``. === Noncompliant code example [source,csharp] ---- public class A { public static string[] strings1 = {"first","second"}; // Noncompliant public static List strings3 = new List(); // Noncompliant // ... } ---- === Compliant solution [source,csharp] ---- public class A { protected static string[] strings1 = {"first","second"}; protected static List strings3 = new List(); // ... } ---- === Exceptions No issue is reported: * If the type of the field inherits/implements one (at least) of the following types: ** ``++System.Collections.ObjectModel.ReadOnlyCollection++`` ** ``++System.Collections.ObjectModel.ReadOnlyDictionary++`` ** ``++System.Collections.Immutable.IImmutableArray++`` ** ``++System.Collections.Immutable.IImmutableDictionary++`` ** ``++System.Collections.Immutable.IImmutableList++`` ** ``++System.Collections.Immutable.IImmutableSet++`` ** ``++System.Collections.Immutable.IImmutableStack++`` ** ``++System.Collections.Immutable.IImmutableQueue++`` * If the field is ``++readonly++`` and is initialized inline with an immutable type (i.e. inherits/implements one of the types in the previous list) or null. == Resources * https://cwe.mitre.org/data/definitions/582[MITRE, CWE-582] - Array Declared Public, Final, and Static * https://cwe.mitre.org/data/definitions/607[MITRE, CWE-607] - Public Static Final Field References Mutable Object ifdef::env-github,rspecator-view[] ''' == Implementation Specification (visible only on this page) === Message Use an immutable collection or reduce the accessibility of this field. === Highlighting field name ''' == Comments And Links (visible only on this page) include::../comments-and-links.adoc[] endif::env-github,rspecator-view[]