24 lines
416 B
Plaintext
24 lines
416 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
public class Monument
|
||
|
{
|
||
|
public static readonly List<Monument> ALL_MONUMENTS = new List<Monument>();
|
||
|
// ...
|
||
|
|
||
|
public Monument(string location, ...)
|
||
|
{
|
||
|
ALL_MONUMENTS.Add(this); // Noncompliant; passed to a method of another object
|
||
|
|
||
|
this.location = location;
|
||
|
// ...
|
||
|
}
|
||
|
}
|
||
|
----
|
||
|
|
||
|
include::../exceptions.adoc[]
|
||
|
|
||
|
include::../see.adoc[]
|