C# adding string elements of 4 different string arrays with each other
- by new_coder
Hello. I need an advice about how to create new string array from 4 different string arrays:
We have 4 string arrays:
string[] arr1 = new string [] {"a1","a2","a3"..., "a30"};
string[] arr2 = new string [] {"d10","d11","d12","d13","d14","d15"};
string[] arr3 = new string [] {"f1","f2","f3"...,"f20"};
string[] arr4 = new string [] …