public JSONTable getJSON(string name, JSONTable defaultValue) { if (dictionary.ContainsKey(name)) { return(new JSONTable((Dictionary <string, System.Object>)dictionary[name])); } else { return(defaultValue); } }
public static JSCNCommand parse(string text) { return(JSONTable.parseCommand(text)); }