Represents the entry at the specified index of the Pattern.


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

Syntax

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

/** property */
public void set_Item(int index, Pattern 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