Exemplo n.º 1
0
 public object Clone()
 {
     return(new StickResult
     {
         Winner = (PlayerInfo)Winner?.Clone(),
         StickPile = StickPile?.Select(c => (Card)c?.Clone()).ToList()
     });
 }