CopyFrom() public method

public CopyFrom ( BagOfCards other ) : void
other BagOfCards
return void
Beispiel #1
0
        public BagOfCards Clone()
        {
            var result = new BagOfCards(this.gameSubset);

            result.CopyFrom(this);
            return(result);
        }
 public BagOfCards Clone()
 {
     var result = new BagOfCards(this.gameSubset);
     result.CopyFrom(this);
     return result;
 }