You can add elements to one JArray by calling JArray.Add(element) , where the element comes from the second JArray. You will need to iterate over the second JArray to add all these elements, but this will accomplish what you want:
for(int i=0; i<jarrayTwo.Count; i++) { jarrayOne.Add(jarrayTwo[i]); }
in the above example, jarrayOne will now contain all the first elements of the array, followed by subsequent elements of the array. More information can be found in JArray .
Chris source share