System.Collections.ArrayList.ReadOnlyListWrapper.this C# (CSharp) 메소드

this() 공개 메소드

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

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