JSONObject.this C# (CSharp) Method

this() public method

public this ( int index ) : JSONObject
index int
return JSONObject
	public JSONObject this[int index]
	{
		get
		{
			if (list.Count > index) return list[index];
			return null;
		}
		set
		{
			if (list.Count > index)
				list[index] = value;
		}
	}
	public JSONObject this[string index]

Same methods

JSONObject::this ( string index ) : JSONObject