提交 b3e40a44 编写于 作者: A Ashley Hauck

Use StringBuilder.Append instead of string concat

上级 53e3c942
......@@ -66,7 +66,8 @@ private static string PrependFileToArgs(string pathToTool, string commandLineArg
{
var builder = new CommandLineBuilderExtension();
builder.AppendFileNameIfNotNull(pathToTool);
builder.AppendTextUnquoted(" " + commandLineArgs);
builder.AppendTextUnquoted(" ");
builder.AppendTextUnquoted(commandLineArgs);
return builder.ToString();
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册