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