CellsAutomate.Mutator.Mutations.ReplaceCommandMutation.ReplaceCommand.ReplaceCommand C# (CSharp) Méthode

ReplaceCommand() public méthode

public ReplaceCommand ( ICommandsList commands, ICommand now, int index ) : System
commands ICommandsList
now ICommand
index int
Résultat System
            public ReplaceCommand(ICommandsList commands, ICommand now, int index)
            {
                Commands = commands;
                Previous = commands[index];
                Now = now;
                Index = index;
            }
ReplaceCommandMutation.ReplaceCommand