Click or drag to resize

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

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 (Inherited from ICollectionT.)
Public propertyItem
Gets or sets the element at the specified index.
(Inherited from IListT.)
Top
Methods
  NameDescription
Public methodAdd (Inherited from ICollectionT.)
Public methodClear (Inherited from ICollectionT.)
Public methodContains (Inherited from ICollectionT.)
Public methodCopyTo (Inherited from ICollectionT.)
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from IEnumerableT.)
Public methodIndexOf (Inherited from IListT.)
Public methodInsert (Inherited from IListT.)
Public methodRemove (Inherited from ICollectionT.)
Public methodRemoveAt (Inherited from IListT.)
Top
See Also