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

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

Inserts an item into the collection at the specified index.
The item was null The index was less than zero.-or- The index was greater than the count of items in the collection.
public Insert ( int index, object item ) : void
index int The zero-based index location where the item is inserted
item object An object representing the item to insert.
Результат void
            public void Insert(int index, object item)
            {
                _items.Insert(index, item);
            }