Fix format

This commit is contained in:
William Li 2017-04-14 10:27:24 -07:00
parent 83f3a3ec86
commit def4322783
2 changed files with 5 additions and 4 deletions

View file

@ -9,9 +9,9 @@ namespace MSBuildTestApp
{
public static void Main(string[] args)
{
if (args.Length > 0)
if (args.Length > 0)
{
Console.WriteLine("echo args:"+ String.Join(";", args));
Console.WriteLine("echo args:" + string.Join(";", args));
}
Console.WriteLine("Hello World!");
}