Habanero.Faces.Win.TreeViewWin.TreeNodeCollectionWin.RemoveAt C# (CSharp) Метод

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

Removes the T:System.Collections.IList item at the specified index.
is not a valid index in the . The is read-only.-or- The has a fixed size.
public RemoveAt ( int index ) : void
index int The zero-based index of the item to remove.
Результат void
            public void RemoveAt(int index)
            {
                ((IList)_nodes).RemoveAt(index);
            }