Dominion.BagOfCards.CopyFrom C# (CSharp) Method

CopyFrom() public method

public CopyFrom ( BagOfCards other ) : void
other BagOfCards
return void
        public void CopyFrom(BagOfCards other)
        {
            base.CopyFrom(other);
        }

Usage Example

Beispiel #1
0
        public BagOfCards Clone()
        {
            var result = new BagOfCards(this.gameSubset);

            result.CopyFrom(this);
            return(result);
        }
All Usage Examples Of Dominion.BagOfCards::CopyFrom