积极答复者
新手入门c#第一件难题

问题
-
----------------------------------------------
// Hello3.cs
// arguments: A B C D
using System;
public class Hello3
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
Console.WriteLine("You entered the following {0} command line arguments:",
args.Length );
for (int i=0; i < args.Length; i++)
{
Console.WriteLine("{0}", args[i]);
}
}
}
输出
Hello, World!
You entered the following 4 command line arguments:
A
B
C
D
---------------------------------
以上是msdn的教程原文,为什么会输出abcd呢,我自己做的只是输出头两行··