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

Swap() private method

private Swap ( int first, int second ) : void
first int
second int
return void
            private void Swap(int first, int second)
            {
                var temp = Commands[second];
                Commands[second] = Commands[first];
                Commands[first] = temp;
            }
SwapCommandMutation.SwapCommand