public static int GetInt(LogicJSONObject jsonObject, string key)
 {
     return(LogicJSONHelper.GetInt(jsonObject, key, -1, true));
 }
 public static int GetInt(LogicJSONObject jsonObject, string key, int defaultValue)
 {
     return(LogicJSONHelper.GetInt(jsonObject, key, defaultValue, false));
 }
 public static LogicLong GetLogicLong(LogicJSONObject jsonObject, string key)
 {
     return(new LogicLong(LogicJSONHelper.GetInt(jsonObject, key + "_hi"), LogicJSONHelper.GetInt(jsonObject, key + "_lo")));
 }