I have two
JToken
Concat
null
Action<JToken> Ok = (x) => { Debug.WriteLine(x); /* outputs [ { "id": 1, }, { "id": 2, } ] */ x = (x).Concat<JToken>(x) as JToken; Debug.WriteLine(x); // null };
JToken.FromObject(x.Concat(x))