public JSONObject (AddJSONConents content) { content.Invoke(this); }
public void AddField (string name, AddJSONConents content) { AddField(name, Create(content)); }
public void Add (AddJSONConents content) { Add(Create(content)); }
public static JSONObject Create (AddJSONConents content) { JSONObject obj = Create(); content.Invoke(obj); return obj; }
public void AddField(string name, AddJSONConents content) { AddField(name, new JSONObject(content)); }
public void Add(AddJSONConents content) { Add(new JSONObject(content)); }