Habanero.Faces.Win.ComboBoxWin.ComboBoxObjectCollectionWin.this C# (CSharp) Метод

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

Retrieves the item at the specified index within the collection
public this ( int index ) : object
index int The index of the item in the collection to retrieve
Результат object
            public object this[int index]
            {
                get { return _items[index]; }
                set { _items[index] = value; }
            }