System.Collections.ArrayList.SyncArrayList.this C# (CSharp) Méthode

this() public méthode

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