有一个标识符,但我不知道我需要放在那里

时间:2014-09-03 18:22:44

标签: c# identifier

视觉工作室需要什么样的标识符?我只想从外面放一个int数组,在0到66之间有两个不同的数字。

    public static void playerLocationChange(int[])
    {

    }

1 个答案:

答案 0 :(得分:3)

您必须为参数指定名称。否则,你无法从函数中引用它。

public static void playerLocationChange(int[] myIntArrayParam) 
                                        //Notice the name next to int[]
                                        //This is the parameter's name
{

}