Ejemplo n.º 1
0
 public int GetCount(Card c)
 {
     CountById.TryGetValue(c.Id, out int count);
     return(count);
 }
Ejemplo n.º 2
0
 public int GetCount(string cardId)
 {
     CountById.TryGetValue(cardId, out int count);
     return(count);
 }