public bool Equals(ConvertedPokerPlayer other)
 {
     return(base.Equals(other) &&
            Rounds.ToArray().EqualsArray(other.Rounds.ToArray()));
 }