Beispiel #1
0
 public string get(string field, haxe.lang.Null<bool> decompress)
 {
     string val;
     if (!dictionary.TryGetValue(field, out val)) return "";
     return val;
 }
Beispiel #2
0
 public void set(string field, string data, haxe.lang.Null<bool> compress)
 {
     if(dictionary.ContainsKey(field)) dictionary.Remove(field);
     dictionary.Add(field, data);
 }