3using System.Collections.Generic;
6using System.Threading.Tasks;
40 public virtual void Add(T item)
85 IEnumerator IEnumerable.GetEnumerator()
95 public T
this[
int nIdx]
The GenericList provides a base used to implement a generic list by only implementing the minimum amo...
void RemoveAt(int nIdx)
Remove the item at a given index in the list.
List< T > m_rgItems
The actual list of items.
IEnumerator< T > GetEnumerator()
Get the list enumerator.
int Count
Returns the number of items in the list.
GenericList()
The constructor.
virtual void Add(T item)
Add a new item to the list.
void Clear()
Remove all items from the list.
bool Remove(T item)
Remove an item from the list.
The MyCaffe.basecode contains all generic types used throughout MyCaffe.