System.Collections.ArrayList.ListWrapper.this C# (CSharp) Method

this() public method

public this ( int index ) : object
index int
return object
			public virtual object this[int index] 
			{
				get 
				{
					return m_InnerList[index];
				}

				set 
				{
					m_InnerList[index] = value;
				}
			}