IResizableList(T) Interface

IResizableListT Interface

Provides the ability to resize a generic list by setting the Count property.

Namespace:  Rhino.Collections
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public interface IResizableList<T> : IList<T>, 
	ICollection<T>, IEnumerable<T>, IEnumerable
Public Interface IResizableList(Of T)
	Inherits IList(Of T), ICollection(Of T), IEnumerable(Of T), 
	IEnumerable

Type Parameters

T

The IResizableListT type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets or sets the length of the list. This hides (Shadows in Vb.Net) the read-only Count property of the generic list.
Public propertyIsReadOnly
Gets a value indicating whether the ICollectionT is read-only.
(Inherited from ICollectionT.)
Public propertyItem
Gets or sets the element at the specified index.
(Inherited from IListT.)
Top
Methods
  NameDescription
Public methodAdd
Adds an item to the ICollectionT.
(Inherited from ICollectionT.)
Public methodClear
Removes all items from the ICollectionT.
(Inherited from ICollectionT.)
Public methodContains
Determines whether the ICollectionT contains a specific value.
(Inherited from ICollectionT.)
Public methodCopyTo
Copies the elements of the ICollectionT to an Array, starting at a particular Array index.
(Inherited from ICollectionT.)
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from IEnumerableT.)
Public methodIndexOf
Determines the index of a specific item in the IListT.
(Inherited from IListT.)
Public methodInsert
Inserts an item to the IListT at the specified index.
(Inherited from IListT.)
Public methodRemove
Removes the first occurrence of a specific object from the ICollectionT.
(Inherited from ICollectionT.)
Public methodRemoveAt
Removes the IListT item at the specified index.
(Inherited from IListT.)
Top
Version Information

Rhino for Windows

Supported in: 6.14
See Also