JSONObject.this C# (CSharp) 메소드

this() 공개 메소드

public this ( int index ) : JSONObject
index int
리턴 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