Exemplo n.º 1
0
 public static JsonPointer Create(JsonTreeNode node)
 {
     return(new JsonPointer
     {
         Path = new ArraySegment <Utf8String>(node.Path().Skip(1).Select(x => GetKeyFromParent(x)).ToArray())
     });
 }