[分享]c#入门教程
我在公司的电脑上找到的 ,希望能帮助新学者
[此贴子已经被作者于2006-8-17 22:56:06编辑过]
[此贴子已经被作者于2006-8-17 22:56:06编辑过]
在第二段代码输出后怎么会出现这个???
未处理的异常: System.IndexOutOfRangeException: 索引超出了数组界限。
在 NamedWelcome.Program.Main(String[] args) 位置 d:\vs\NamedWelcome\NamedWelc
ome\Program.cs:行号 12
代码:
using System;
using System.Collections.Generic;
using System.Text;
namespace NamedWelcome
{
class Program
{
public static void Main(string[] args)
{
Console.Write("What is your name?:");
Console.WriteLine("Hello,{2}!",args[1]);
Console.WriteLine("Welcome to the C# Station Tutorial");
}
}
}