Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 512 Bytes

RCS1197.md

File metadata and controls

28 lines (18 loc) · 512 Bytes

RCS1197: Optimize StringBuilder.Append/AppendLine call

Property Value
Id RCS1197
Category Performance
Severity Info

Example

Code with Diagnostic

sb.Append(s + "x");

Code with Fix

sb.Append(s).Append("x");

See Also

(Generated with DotMarkdown)