我在以下 C# 程序中有问题。编写代码时没有错误,但是当我调试它时,会抛出一个异常,即索引超出了数组绑定的范围。
这里有什么问题?
using System;
class secmain
{
public static void squarearg(int i)
{
int m=i*i;
Console.WriteLine("The Square of the argument is {0}",m);
}
static void Main(String[] param)
{
Console.WriteLine("this program will convert your string argument to int and display the square of the numbe");
int k = Int32.Parse(param[0]);
squarearg(k);
}
}