示例#1
0
        public object Clone()
        {
            StrategyTable strategyTable = new StrategyTable(this);

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