rspec/rules/S4143/csharp/rule.adoc

19 lines
352 B
Plaintext
Raw Normal View History

2020-06-30 12:49:37 +02:00
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[]