我收到了错误:
'game.Form1.WallCheckerArray'和。之间的歧义 'game.Form1.WallCheckerArray'“
因为我使用了两次。为什么我不能使用相同的数组名称两次使用不同的值?我的代码如下。该数组存在于cordinates之外。
我的阵列:
private int[,] WallCheckerArray = new int[28, 4];// <<----- was the problem
int[,] WallCheckerArray = {
{220,250,13,64},//1
{24,58,24,55},//2
{104,206,22,55},//3
{264,370,22,55},//4
{382,450,22,55},//5
{24,92,74,109},//6
{104,136,74,185},//7
{136,206,114,138},//8
{150,326,74,98},//9
{225,255,98,140},//10
{345,365,74,185},//11
{275,355,114,138},//12
{384,445,74,109},//13
{104,136,200,270},//14
{150,330,240,270},//15
{225,255,270,315},//16
{340,370,200,270},//17
{20,85,285,305},//18
{50,85,305,345},//19
{104,214,285,315},//20
{274,368,285,315},//21
{378,445,285,305},//22
{378,415,305,345},//23
{24,195,365,375},//24
{104,154,335,375},//25
{165,339,335,345},//26
{215,245,335,375},//27
{265,445,365,375},//28
{355,365,335,375}//29
};
int i = 0;
for( i = 0; i < 29; i++)
{
if (((x >= WallCheckerArray[i, 0] && x <= WallCheckerArray[i, 1]) && (y >= WallCheckerArray[i, 2] && y <= WallCheckerArray[i, 3])))//-----------------------------------}-
{
InsideWC();
System.Console.WriteLine(WallCheckerArray[i, 1]);
}
}
答案 0 :(得分:4)
编译器将一行代码如int[,] WallCheckerArray = something
读取为“创建一个名为WallCheckerArray的新int[,]
。问题是,你连续两次这样做;你不能有两个具有相同名称的不同变量。如果您不为变量提供访问修饰符,C#编译器将假定您希望它为Private
。
使您的代码有效:
private int[,] WallCheckerArray = new int[28, 4];
WallCheckerArray = {
/* Your Data */
};
仅供参考:您实际上可以制作数组并在同一语句中填充数据,如下所示:
private int[,] WallCheckerArray = {
{220,250,13,64},
{24,58,24,55},
{104,206,22,55},
// and so on
};
这样,您不必担心声明数组的大小,它将为您处理。
答案 1 :(得分:0)
必须删除“private int [,] WallCheckerArray = new int [28,4];”