I have 2 arraylists in my project, list1, and list2. (both contains 9 String values, car1, car2, car3 and so on.
I also have an string array, called store_numbers which can contain 52 String elements. Now I wanna copy my values from list1 and list2 to the array. By doing :
list1.CopyTo(store_numbers,0);
Which I think is the right way I get the error message
At least one element in the source could not be cast down to the destination array type
Anyone who knows how I can Fix this?
Thanks!