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

this() public method

public this ( int index ) : object
index int
return object
			public override object this[int index] 
			{
				get 
				{
					return m_InnerArrayList[index];
				}

				set 
				{
					throw new NotSupportedException(this.ErrorMessage);
				}
			}