我有对象Card
public class Card {
public int ID { get; set; }
public string Name { get; set; }
public Color CardColor { get; set; }
public int Size { get; set; }
}
我有清单Card
。我想Card
从具有不同ID
但其他属性相同的列表中删除。
cardList.Remove(mycard);
不管用。