CellsAutomate.Mutator.CommandsList.CommandsListWithLogger.RemoveAt C# (CSharp) 메소드

RemoveAt() 공개 메소드

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