CellsAutomate.Mutator.CommandsList.CommandsListWithLogger.RemoveAt C# (CSharp) Method

RemoveAt() public method

public RemoveAt ( int index ) : void
index int
return void
        public void RemoveAt(int index)
        {
            var parsedCommand = _toStringParser.ParseCommand(_commands[index]);
            _commands.RemoveAt(index);
            _logger.Write($"Command \"{parsedCommand}\" deleted from \"{index}\"\n");
        }