System.Collections.ArrayList.ReadOnlyArrayList.this C# (CSharp) Метод

this() публичный Метод

public this ( int index ) : Object
index int
Результат Object
            public override Object this[int index]
            {
                get
                {
                    return _list[index];
                }
                set
                {
                    throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
                }
            }