
When an include is not surrounded by empty lines, its content is inlined on the same line as the adjacent content. That can lead to broken tags and other display issues. This PR fixes all such includes and introduces a validation step that forbids introducing the same problem again.
43 lines
789 B
Plaintext
43 lines
789 B
Plaintext
== Why is this an issue?
|
|
|
|
``++StringBuilder++`` is more efficient than string concatenation, especially when the operator is repeated over and over as in loops.
|
|
|
|
=== Noncompliant code example
|
|
|
|
[source,csharp]
|
|
----
|
|
string str = "";
|
|
for (int i = 0; i < arrayOfStrings.Length ; ++i)
|
|
{
|
|
str = str + arrayOfStrings[i];
|
|
}
|
|
----
|
|
|
|
=== Compliant solution
|
|
|
|
[source,csharp]
|
|
----
|
|
StringBuilder bld = new StringBuilder();
|
|
for (int i = 0; i < arrayOfStrings.Length; ++i)
|
|
{
|
|
bld.Append(arrayOfStrings[i]);
|
|
}
|
|
string str = bld.ToString();
|
|
----
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::../message.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
|
|
endif::env-github,rspecator-view[]
|