Code:
private void IncrementCount()
{
JObject myObj = new JObject();
myObj.Add("thays", new JObject());
}
Disable JustMyCode in Debugger settings.
Try to look at myObj in locals, you will not see the property ChildrenTokens, and we are able to see it in a .net6 app.
This is the definition of it:
protected override IList<JToken> ChildrenTokens => _properties;