嗨,我正在尝试使用 MONO IDE 使用 C# 发送两个参数,但我无法做到这一点。我收到以下错误。
Unhandled Exception: System.IndexOutOfRangeException: Array index is out of range.
at Command.Main (System.String[] args) [0x00000] in /media/EE76D9DA76D9A39D/C#/Command.cs:6
[ERROR] FATAL UNHANDLED EXCEPTION: System.IndexOutOfRangeException: Array index is out of range.
at Command.Main (System.String[] args) [0x00000] in /media/EE76D9DA76D9A39D/C#/Command.cs:6
这是我的程序:
using System;
class Command
{
static void Main(String[] args)
{
Console.WriteLine("Hi {0} , Welcome to {1}",args[0],args[1]);
}
}
提前致谢 。