控件在2D数组中



[8, 8]我有一个创建行和列的二维数组[i, j]

我想检查是否有一个对象在单行中。例如,第4行或第1行

可以运行forlopp检查。

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;
}
}

相关内容

  • 没有找到相关文章

最新更新