Method Add
Add(T)
Add an item to the list.
Declaration
public void Add(T item)
Parameters
| Type | Name | Description | 
|---|---|---|
| T | item | Item to add to the list.  | 
    
Implements
Add(params T[])
Add multiple objects to the list.
Declaration
public void Add(params T[] items)
Parameters
| Type | Name | Description | 
|---|---|---|
| T[] | items | Items to add to the list.  |