检查列表是否具有2个属性的对象

时间:2013-09-20 03:41:13

标签: c# list

我想检查我的单元格列表中是否有任何具有特定列和特定行的单元格,如果有,则删除该单元格。如果没有,请添加具有该行和列的单元格。我的尝试,但无法检查行不知道如何检查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));
}

0 个答案:

没有答案