Exemplo n.º 1
0
        public static JsonObject Create(AddJSONConents content)
        {
            JsonObject obj = Create();

            content.Invoke(obj);
            return(obj);
        }
Exemplo n.º 2
0
    public static JSONObject Create(AddJSONConents content)
    {
        JSONObject Obj = Create();

        content.Invoke(Obj);
        return(Obj);
    }
Exemplo n.º 3
0
		public JSONObject(AddJSONConents content) {
			content.Invoke(this);
		}
Exemplo n.º 4
0
	public JSONObject (AddJSONConents content) 
	{
		content.Invoke(this);
	}
Exemplo n.º 5
0
	public static JSONObject Create (AddJSONConents content) 
	{
		JSONObject obj = Create();
		content.Invoke(obj);
		return obj;
	}