CellsAutomate.Mutator.Mutations.DeleteCommandMutation.RemoveCommand.RemoveCommand C# (CSharp) Method

RemoveCommand() public method

public RemoveCommand ( ICommandsList commands, int index ) : System
commands ICommandsList
index int
return System
            public RemoveCommand(ICommandsList commands, int index)
            {
                Commands = commands;
                Command = commands[index];
                Index = index;
            }
DeleteCommandMutation.RemoveCommand