Lets say you have the following Chilkat JsonObject named jsonA:
"object": "list",
"data": [
{0},
{1},
{2},
{3},
{4},
{5}
],
"has_more": true
}
Lets say you have the identical following JsonObject named jsonB:
"object": "list",
"data": [
{6},
{7},
{8}
],
"has_more": false
}
Utilizing the bundle, what would be the best approach to generate a single "data" array of:
"data": [
{0},
{1},
{2},
{3},
{4},
{5},
{6},
{7},
{8}
],
I've dug through the Json reference documentation and cannot seem to find a method that would do this? Each array can contain up to 100 items, so I would rather not have to loop through each item if possible.