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