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
You can also use the union method:
JArray test1 = JArray.Parse("[\"john\"]"); JArray test2 = JArray.Parse("[\"doe\"]"); test1 = new JArray(test1.Union(test2));
Now test1 is
test1
[ "john", "doe" ]