コード例 #1
0
ファイル: JSONObject.cs プロジェクト: NotYours180/lockstep.io
	public JSONObject (AddJSONConents content) 
	{
		content.Invoke(this);
	}
コード例 #2
0
ファイル: JSONObject.cs プロジェクト: NotYours180/lockstep.io
	public void AddField (string name, AddJSONConents content) 
	{
		AddField(name, Create(content));
	}
コード例 #3
0
ファイル: JSONObject.cs プロジェクト: NotYours180/lockstep.io
	public void Add (AddJSONConents content) 
	{
		Add(Create(content));
	}
コード例 #4
0
ファイル: JSONObject.cs プロジェクト: NotYours180/lockstep.io
	public static JSONObject Create (AddJSONConents content) 
	{
		JSONObject obj = Create();
		content.Invoke(obj);
		return obj;
	}
コード例 #5
0
		public void AddField(string name, AddJSONConents content) { AddField(name, new JSONObject(content)); }
コード例 #6
0
		public void Add(AddJSONConents content) { Add(new JSONObject(content)); }