Exemplo n.º 1
0
        public object Clone()
        {
            StrategyTable strategyTable = new StrategyTable(this);

            return(strategyTable);
        }
Exemplo n.º 2
0
 private StrategyTable(StrategyTable strategyTable)
 {
     this.StrategyList = strategyTable.StrategyList == null ? null : strategyTable.StrategyList.Select(T => (Strategy)T.Clone()).ToList();
 }