Hmmm..if you mean like swapping the values of your letter array to your number array and vice versa...
put the values in to a new array..then swap them from that...i dont think there is a method in c# that actually does this...Maybe someone can clarify? (I would be interested to know if there is...
string[] letterarray = { "A", "B", "C" };
string[] numberarray = { "1", "2", "3" };
string[] newletterarray = new string[3];
//new arrays to store values
string[] newnumberarray = new string[3];
for (int i = 0; i < 3; i++)
{
newletterarray[i] = letterarray[i];
newnumberarray[i] = numberarray[i];
}
for (int i = 0; i < 3; i++)
{ //swap values using for loops
numberarray[i] = newletterarray[i];
letterarray[i] = newnumberarray[i];
}