rspec/rules/S4143/csharp/rule.adoc
2021-06-02 20:44:38 +02:00

19 lines
352 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
----
list[index] = "value 1";
list[index] = "value 2"; // Noncompliant
dictionary.Add(key, "value 1");
dictionary[key] = "value 2"; // Noncompliant
----
ifdef::rspecator-view[]
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::rspecator-view[]