LibiadaCore.Core.Chain.FillClone C# (CSharp) Method

FillClone() protected method

Fills clone of this chain.
protected FillClone ( IBaseObject clone ) : void
clone IBaseObject /// The clone of chain. ///
return void
        protected void FillClone(IBaseObject clone)
        {
            var tempChain = clone as Chain;
            base.FillClone(tempChain);
            if (tempChain != null)
            {
                if (congenericChains != null)
                {
                    tempChain.congenericChains = (CongenericChain[])congenericChains.Clone();
                }
            }
        }