I can\'t figure out how to concatenate two JArrays that I got be using JArray.Parse? The order of the arrays must be preserved i.e. the first array should be first and eleme
I used the Merge method, which modifies the original JArray:
JArray test1 = JArray.Parse("[\"john\"]"); JArray test2 = JArray.Parse("[\"doe\"]"); test1.Merge(test2);