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

this() public method

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