mirror of
https://github.com/github/codeql.git
synced 2026-01-10 05:00:29 +01:00
10 lines
214 B
C#
10 lines
214 B
C#
static void Main(string[] args)
|
|
{
|
|
foreach (var arg in args)
|
|
{
|
|
var sb = new StringBuilder(); // BAD: Creation in loop
|
|
sb.Append("Hello ").Append(arg);
|
|
Console.WriteLine(sb);
|
|
}
|
|
}
|