Class GrowingList<T>
Inherited Members
Namespace: Ritchie.Toolbox.Rendering
Assembly: Ritchie.Toolbox.dll
Syntax
public sealed class GrowingList<T>
Type Parameters
Name | Description |
---|---|
T |
Properties
Count
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
int |
Methods
Add(T)
Declaration
public void Add(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item |
AddRange(IEnumerable<T>)
Declaration
public void AddRange(IEnumerable<T> items)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<T> | items |
Clear()
Declaration
public void Clear()
GetEnumerator()
Declaration
public IEnumerator<T> GetEnumerator()
Returns
Type | Description |
---|---|
IEnumerator<T> |
ToArray()
Declaration
public T[] ToArray()
Returns
Type | Description |
---|---|
T[] |