Ejemplo n.º 1
0
	public JSONObject (AddJSONConents content) 
	{
		content.Invoke(this);
	}
Ejemplo n.º 2
0
	public void AddField (string name, AddJSONConents content) 
	{
		AddField(name, Create(content));
	}
Ejemplo n.º 3
0
	public void Add (AddJSONConents content) 
	{
		Add(Create(content));
	}
Ejemplo n.º 4
0
	public static JSONObject Create (AddJSONConents content) 
	{
		JSONObject obj = Create();
		content.Invoke(obj);
		return obj;
	}
Ejemplo n.º 5
0
		public void AddField(string name, AddJSONConents content) { AddField(name, new JSONObject(content)); }
Ejemplo n.º 6
0
		public void Add(AddJSONConents content) { Add(new JSONObject(content)); }