TypeName | StringBuilderInLoopAnalyzer |
Check Id | CC0039 |
Category | Performance |
Severity | Warning |
Do not concatenate a string on a loop. It will alocate a lot of memory. Use a StringBuilder instead. It will will require less allocation, less garbage collector work, less CPU cycles, and less overall time.
A code fix will be presented to you that will transform the code, it will use StringBuilder to concatenate the string.
TBD
TBD