示例#1
0
 public static JNode Parse(JsonValue data)
 {
     return(JNodeHjson.Parse(data));
 }
示例#2
0
 public static void UpdateFromHjson(this JNode node, string hjson, bool clearLists = true)
 {
     node.Merge(JNodeHjson.Parse(hjson), clearLists);
 }
示例#3
0
 public static JNode Parse(string json)
 {
     return(JNodeHjson.Parse(json));
 }