[]
Represents a collection of collections of double values.
public class DoubleCollectionCollection : IList, ICollection, IList<DoubleCollection>, ICollection<DoubleCollection>, IEnumerable<DoubleCollection>, IEnumerable
Public Class DoubleCollectionCollection
Implements IList, ICollection, IList(Of DoubleCollection), ICollection(Of DoubleCollection), IEnumerable(Of DoubleCollection), IEnumerable
| Name | Description |
|---|---|
| DoubleCollectionCollection() | Creates a new collection of collections. |
| Name | Description |
|---|---|
| Count | Gets the number of items in the collection. |
| this[int] | Gets or sets the item at the specified index. |
| Name | Description |
|---|---|
| Add(DoubleCollection) | Adds an item to the collection. |
| AddRange(DoubleCollection[]) | Adds an array of items to the collection. |
| Clear() | Removes all items from the collection. |
| Contains(DoubleCollection) | Determines whether the collection contains a specific item. |
| CopyTo(DoubleCollection[], int) | Copies the items in the collection to an array, starting at the specified array index. |
| GetEnumerator() | Gets an enumerator that iterates through the collection. |
| IndexOf(DoubleCollection) | Determines the index of the item in the collection. |
| Insert(int, DoubleCollection) | Inserts an item into the collection at the specified index. |
| InsertRange(int, DoubleCollection[]) | Inserts an array of items into the collection at the specified index. |
| OnChanged(EventArgs) | Raises the Changed event. |
| Remove(DoubleCollection) | Removes an item from the collection. |
| RemoveAt(int) | Removes an item from the collection at the specified index. |
| Name | Description |
|---|---|
| Changed | Occurs when the collection is changed. |