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

this() public method

public this ( int index ) : Object
index int
return Object
            public override Object this[int index]
            {
                get
                {
                    return _list[index];
                }
                set
                {
                    throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
                }
            }