[8, 8]
我有一个创建行和列的二维数组[i, j]
。
我想检查是否有一个对象在单行中。例如,第4行或第1行
可以运行for
lopp检查。
int i = 0; //or 3 //here you can set the row number
bool exists = false;
int value = 4;
for(int j = 0; j < array.GetLength(1); j++)
{
if(array[i, j] == value)
{
exists = true;
break;
}
}