I have
string[] a = {"1","2","3","4","5"};
I want to create a second array and have it store *3 what array a has.
So the second array would look like:
string[] b = {"1","2","3","4","5","1","2","3","4","5","1","2","3","4","5"};
I was thinking of using Array.Copy, but is there another way?
Array.Copy? Just copy the array to the three segments of the new array.List<string>and AddRange