DoubleCollection.Item[Int32] Property

Definition

Gets or sets the Double at the specified zero-based index.

public:
 property double default[int] { double get(int index); void set(int index, double value); };
public double this[int index] { get; set; }
member this.Item(int) : double with get, set
Default Public Property Item(index As Integer) As Double

Parameters

index
Int32

The zero-based index of the Double value to get or set.

Property Value

The Double at the specified index.

Implements

Exceptions

index is not a valid index in the DoubleCollection.

The DoubleCollection is read-only.

-or-

The DoubleCollection has a fixed size.

Applies to

See also