I have two string arrays, I want them to become one with differente values like this:
string[] array1 = { "Jhon", "Robert", "Elder" };
string[] array2 = { "Elena", "Margareth", "Melody" };
I want an output like this:
{ "Jhon and Elena", "Robert and Margareth", "Elder and Melody" };
I've used string.Join, but it works only for one string array.