C# Класс xpidea.neuro.net.NeuroLinkCollection

Наследование: xpidea.neuro.net.patterns.NeuroObjectCollection
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Add ( NeuroLink value ) : int

Adds a with the specified value to the .

AddRange ( NeuroLink value ) : void

Copies the elements of an array to the end of the xpidea.neuro.net.NeuroLinkCollection.

AddRange ( NeuroLinkCollection value ) : void

Adds the contents of another xpidea.neuro.net.NeuroLinkCollection to the end of the collection.

Contains ( NeuroLink value ) : bool

Gets a value indicating whether the contains the specified .

CopyTo ( NeuroLink array, int index ) : void

Copies the xpidea.neuro.net.NeuroLinkCollection values to a one-dimensional System.Array instance at the specified index.

GetEnumerator ( ) : CustomNeuroLinkEnumerator

Returns an enumerator that can iterate through the .

IndexOf ( NeuroLink value ) : int

Returns the index of a in the .

Insert ( int index, NeuroLink value ) : void

Inserts a xpidea.neuro.net.NeuroLink into the xpidea.neuro.net.NeuroLinkCollection at the specified index.

NeuroLinkCollection ( ) : System

Initializes a new instance of .

NeuroLinkCollection ( NeuroLink value ) : System

Initializes a new instance of containing any array of objects.

NeuroLinkCollection ( NeuroLinkCollection value ) : System

Initializes a new instance of based on another .

Remove ( NeuroLink value ) : void

Removes a specific xpidea.neuro.net.NeuroLink from the xpidea.neuro.net.NeuroLinkCollection .

this ( int index ) : NeuroLink

Represents the entry at the specified index of the .

Защищенные методы

Метод Описание
CreateContainigObject ( ) : NeuroObject

Overridden.Creates new object contained by collection.

Описание методов

Add() публичный Метод

Adds a with the specified value to the .

public Add ( NeuroLink value ) : int
value NeuroLink The to add.
Результат int

AddRange() публичный Метод

Copies the elements of an array to the end of the xpidea.neuro.net.NeuroLinkCollection.

public AddRange ( NeuroLink value ) : void
value NeuroLink /// An array of type containing the objects to add to the collection. ///
Результат void

AddRange() публичный Метод

Adds the contents of another xpidea.neuro.net.NeuroLinkCollection to the end of the collection.

public AddRange ( NeuroLinkCollection value ) : void
value NeuroLinkCollection /// A containing the objects to add to the collection. ///
Результат void

Contains() публичный Метод

Gets a value indicating whether the contains the specified .

public Contains ( NeuroLink value ) : bool
value NeuroLink The to locate.
Результат bool

CopyTo() публичный Метод

Copies the xpidea.neuro.net.NeuroLinkCollection values to a one-dimensional System.Array instance at the specified index.

/// is multidimensional. /// -or- /// /// The number of elements in the is greater than the /// available space between and the end of . /// /// is . /// is less than /// 's lowbound. ///
public CopyTo ( NeuroLink array, int index ) : void
array NeuroLink /// /// The one-dimensional that is the destination of the values copied from /// . /// ///
index int The index in where copying begins.
Результат void

CreateContainigObject() защищенный Метод

Overridden.Creates new object contained by collection.
protected CreateContainigObject ( ) : NeuroObject
Результат NeuroObject

GetEnumerator() публичный Метод

Returns an enumerator that can iterate through the .

public GetEnumerator ( ) : CustomNeuroLinkEnumerator
Результат CustomNeuroLinkEnumerator

IndexOf() публичный Метод

Returns the index of a in the .

public IndexOf ( NeuroLink value ) : int
value NeuroLink The to locate.
Результат int

Insert() публичный Метод

Inserts a xpidea.neuro.net.NeuroLink into the xpidea.neuro.net.NeuroLinkCollection at the specified index.

public Insert ( int index, NeuroLink value ) : void
index int The zero-based index where should be inserted.
value NeuroLink
Результат void

NeuroLinkCollection() публичный Метод

Initializes a new instance of .

public NeuroLinkCollection ( ) : System
Результат System

NeuroLinkCollection() публичный Метод

Initializes a new instance of containing any array of objects.

public NeuroLinkCollection ( NeuroLink value ) : System
value NeuroLink /// A array of objects with which to intialize the collection ///
Результат System

NeuroLinkCollection() публичный Метод

Initializes a new instance of based on another .

public NeuroLinkCollection ( NeuroLinkCollection value ) : System
value NeuroLinkCollection /// A from which the contents are copied ///
Результат System

Remove() публичный Метод

Removes a specific xpidea.neuro.net.NeuroLink from the xpidea.neuro.net.NeuroLinkCollection .

is not found in the Collection.
public Remove ( NeuroLink value ) : void
value NeuroLink /// The to remove from the /// . ///
Результат void

this() публичный Метод

Represents the entry at the specified index of the .

/// is outside the valid range of indexes /// for the collection. ///
public this ( int index ) : NeuroLink
index int /// The zero-based index of the entry to locate in the collection. ///
Результат NeuroLink