public static JsonObject CreateJsonObjectWithJsonParse(string json)
 {
     if (jsonParse == null)
     {
         jsonParse = new JsonObjectWithJsonParse();
     }
     return(jsonParse.ToJsonObject(json));
 }
 public static JsonObject CreateJsonObject(string json, bool useJsonParse = true)
 {
     if (useJsonParse)
     {
         return(CreateJsonObjectWithJsonParse(json));
     }
     return(JsonString2JsonObject.ToJsonObject(json));
 }