Habanero.Faces.Win.TreeViewWin.TreeNodeCollectionWin.RemoveAt C# (CSharp) Method

RemoveAt() public method

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.
return void
            public void RemoveAt(int index)
            {
                ((IList)_nodes).RemoveAt(index);
            }