public bool Contains(params string[] cards) { return(cards.All(c => Mainboard.Any(i => i.Card == c) || Sideboard.Any(i => i.Card == c))); }