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

this() public method

public this ( int index ) : Object
index int
return Object
            public virtual Object this[int index]
            {
                get
                {
                    return _list[index];
                }
                set
                {
                    _list[index] = value;
                }
            }