Represents the entry at the specified index of the NeuroLink.


Namespace: xpidea.neuro.net
Assembly: xpidea.neuro.net (in xpidea.neuro.net.dll)

Syntax

Visual Basic (Declaration)
Public Default Property Item( _ 
   ByVal index As Integer _ 
) As NeuroLink
C#
public NeuroLink this[
   int index
] { get; set; }
C++
public property NeuroLink default[int index] sealed  {
    NeuroLink get(int index);
    void set(int index, NeuroLink value);
}
J#
/** property */
public NeuroLink get_Item(int index);

/** property */
public void set_Item(int index, NeuroLink value);
JScript
JScript supports the use of indexed properties, but not the declaration of new ones.

Parameters

index
The zero-based index of the entry to locate in the collection.

Property Value

The entry at the specified index of the collection.

Exceptions

Exception TypeCondition
ArgumentOutOfRangeExceptionindex is outside the valid range of indexes for the collection.

See Also