1

我想检查我的单元格列表中是否有任何单元格具有特定的列和特定的行,如果有,请删除该单元格。如果没有,请添加具有该行和列的单元格。我的尝试,但无法检查行,因为不确定如何检查 2 个属性:

int index = cells.FindIndex(item => item.myColumn == col);
if (index >= 0)
{
    // element exists, do what you need
    if (cell.myColumn == col && cell.myRow == row)
    {
        cells.Remove(cell);
    }
}
else
{
    Bitmap image = myMapController.myMap.cellBgImage;
    cells.Add(new Cell(col, row, new CellSide(0, false), new CellSide(0, false), myMapController.myMap, image));
}
4

0 回答 0