MCLawl.CommandList.AddRange C# (CSharp) Method

AddRange() public method

public AddRange ( List listCommands ) : void
listCommands List
return void
        public void AddRange(List<Command> listCommands)
        {
            listCommands.ForEach(delegate(Command cmd) { commands.Add(cmd); });
        }