예제 #1
0
        public CommandChain(IEnumerable<ICommand> commands)
        {
            this.commands = commands.ToArray(); // Make a copy

            this.timeEstimate = new CommandChainTimeEstimate(this);
        }
예제 #2
0
파일: DataRouter.cs 프로젝트: strager/NoCap
 public DataRouter()
 {
     this.timeEstimate = new DataRouterTimeEstimate(this);
     this.routes = new Dictionary<TypedDataType, ICommand>();
 }