mirror of
https://github.com/github/codeql.git
synced 2025-12-25 13:16:33 +01:00
11 lines
236 B
C#
11 lines
236 B
C#
static void Main(string[] args)
|
|
{
|
|
var sb = new StringBuilder(); // GOOD: Creation outside loop
|
|
foreach (var arg in args)
|
|
{
|
|
sb.Clear();
|
|
sb.Append("Hello ").Append(arg);
|
|
Console.WriteLine(sb);
|
|
}
|
|
}
|