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