Exemplo n.º 1
0
 public JObject(string key, JSon value)
 {
     Values      = new Dictionary <string, JSon>();
     Values[key] = value;
 }
Exemplo n.º 2
0
 public JList(JSon item)
 {
     Items = new List <JSon>();
     Items.Add(item);
 }