C# Класс Axiom.Math.Collections.BaseCollection

Serves as a basis for strongly typed collections in the math lib.
Can't wait for Generics in .Net Framework 2.0!
Наследование: ICollection, IEnumerable, IEnumerator
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
objectList System.Collections.ArrayList

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

Метод Описание
BaseCollection ( ) : System

Clear ( ) : void

Clears all objects from the collection.

CopyTo ( System array, int index ) : void

GetEnumerator ( ) : System.Collections.IEnumerator
MoveNext ( ) : bool

Moves to the next item in the enumeration if there is one.

Remove ( object item ) : void

Removes the item from the collection.

Reset ( ) : void

Resets the in progress enumerator.

this ( int index ) : object

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

Метод Описание
Add ( object item ) : void

Adds an item to the collection.

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

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

Adds an item to the collection.
protected Add ( object item ) : void
item object
Результат void

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

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

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

Clears all objects from the collection.
public Clear ( ) : void
Результат void

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

public CopyTo ( System array, int index ) : void
array System
index int
Результат void

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

public GetEnumerator ( ) : System.Collections.IEnumerator
Результат System.Collections.IEnumerator

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

Moves to the next item in the enumeration if there is one.
public MoveNext ( ) : bool
Результат bool

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

Removes the item from the collection.
public Remove ( object item ) : void
item object
Результат void

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

Resets the in progress enumerator.
public Reset ( ) : void
Результат void

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

public this ( int index ) : object
index int
Результат object

Описание свойств

objectList защищенное свойство

protected ArrayList,System.Collections objectList
Результат System.Collections.ArrayList