示例#1
0
 public static void MoveCard(Card c, CardContainer from, CardContainer to, int position)
 {
     from.RemoveCard(c);
     to.AddCard(c, position);
 }
示例#2
0
 public static void MoveCard(Card c, CardContainer from, CardContainer to)
 {
     from.RemoveCard(c);
     to.AddCard(c);
 }