CellsAutomate.Mutator.Mutations.SwapCommandMutation.SwapCommand.SwapCommand C# (CSharp) Method

SwapCommand() public method

public SwapCommand ( ICommandsList commands, int first, int second ) : System
commands ICommandsList
first int
second int
return System
            public SwapCommand(ICommandsList commands, int first, int second)
            {
                Commands = commands;
                First = first;
                Second = second;
            }
SwapCommandMutation.SwapCommand