logo CodeStepByStep logo

SwitchPairs

Language/Type: C# List collections
Related Links:

Write a method named SwitchPairs that accepts a generic List of strings as a parameter and switches the order of pairs of values in the array. Your method should swap the order of the first two values, then switch the order of the next two, and so on. For example, if a variable named list stores {"a", "bb", "c", "ddd", "ee", "f", "g"}, then the call of SwitchPairs(list); should switch the first pair ("a", "bb"), the second pair ("c", "ddd") and the third pair ("ee", "f"), to yield this list:

{"bb", "a", "ddd", "c", "f", "ee", "g"}

If there are an odd number of values, the final element is not moved. You may assume that the list is not null and that no element of the array is null.

Method: Write a C# method as described, not a complete program or class.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.