rspec/rules/S1226/csharp/rule.adoc
2020-06-30 17:16:12 +02:00

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
}
}
----