CellsAutomate.Mutator.CommandsList.CommandsListWithLogger.RemoveAt C# (CSharp) Méthode

RemoveAt() public méthode

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