2023-05-03 11:06:20 +02:00
== Why is this an issue?
2021-01-27 16:55:38 +01:00
``++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.
2020-06-30 12:48:07 +02:00
2021-02-02 15:02:10 +01:00
2021-01-27 16:55:38 +01:00
This rule raises issues for ``++public static++`` fields with a type inheriting/implementing ``++System.Array++`` or ``++System.Collections.Generic.ICollection<T>++``.
2020-06-30 12:48:07 +02:00
2023-05-03 11:06:20 +02:00
=== Noncompliant code example
2020-06-30 12:48:07 +02:00
2022-02-04 17:28:24 +01:00
[source,csharp]
2020-06-30 12:48:07 +02:00
----
public class A
{
public static string[] strings1 = {"first","second"}; // Noncompliant
public static List<String> strings3 = new List<String>(); // Noncompliant
// ...
}
----
2023-05-03 11:06:20 +02:00
=== Compliant solution
2020-06-30 12:48:07 +02:00
2022-02-04 17:28:24 +01:00
[source,csharp]
2020-06-30 12:48:07 +02:00
----
public class A
{
protected static string[] strings1 = {"first","second"};
protected static List<String> strings3 = new List<String>();
// ...
}
----
2023-05-03 11:06:20 +02:00
=== Exceptions
2020-06-30 12:48:07 +02:00
No issue is reported:
2020-06-30 14:49:38 +02:00
2020-06-30 12:48:07 +02:00
* If the type of the field inherits/implements one (at least) of the following types:
2021-01-27 13:42:22 +01:00
** ``++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>++``
* 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.
2020-06-30 12:48:07 +02:00
include::../see.adoc[]
2021-06-02 20:44:38 +02:00
2021-06-03 09:05:38 +02:00
ifdef::env-github,rspecator-view[]
2021-09-20 15:38:42 +02:00
'''
== Implementation Specification
(visible only on this page)
2023-05-25 14:18:12 +02:00
=== Message
Use an immutable collection or reduce the accessibility of this field.
=== Highlighting
field name
2021-09-20 15:38:42 +02:00
2021-06-08 15:52:13 +02:00
'''
2021-06-02 20:44:38 +02:00
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
2023-06-22 10:38:01 +02:00
2021-06-03 09:05:38 +02:00
endif::env-github,rspecator-view[]