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

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

public this ( int index ) : Object
index int
Результат Object
            public override Object this[int index]
            {
                get
                {
                    lock (_root)
                    {
                        return _list[index];
                    }
                }
                set
                {
                    lock (_root)
                    {
                        _list[index] = value;
                    }
                }
            }