16 lines
258 B
Plaintext
16 lines
258 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
public void DoTheThing(string str, int i, List<string> strings)
|
|
{
|
|
str = i.ToString(i); // Noncompliant
|
|
|
|
foreach (var s in strings)
|
|
{
|
|
s = "hello world"; // Noncompliant
|
|
}
|
|
}
|
|
----
|