Axiom.Math.Collections.BaseCollection.this C# (CSharp) Метод

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

public this ( int index ) : object
index int
Результат object
        public object this[ int index ]
        {
            get
            {
                return objectList[ index ];
            }
            set
            {
                objectList[ index ] = value;
            }
        }