Array Merge

Is there an easy way to merge 2 arrays of the same dimensions without looping thru manually and inserting one at a time into the other?

depending on what you have in the array you could

  • loop through one - put all its elements in a dictionary
  • loop through the other - put all its elements in the dictionary
  • loop through the dictionary & pull them all out into a new array

Yea as I thought. I was looking for a built in solution. No worries I will code it up. Just could do with a mega fast option