Good day whiz coders. Please, i need help on swapping the first two elements in an array. For instance {"I", "am", "too", "handsome"} should turn to {"am", "I", "too", "handsome"}?

Recommended Answers

All 2 Replies

Copy the first element into a holding variable. Copy the second element into the first element. Copy the holding variable into the second element.

string[] str = { "I", "am", "too", "handsome" };
string t = str[1];
str[1] = str[0];
str[0] = t;
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.