C# Class 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!
Inheritance: ICollection, IEnumerable, IEnumerator
Afficher le fichier Open project: WolfgangSt/axiom

Protected Properties

Свойство Type Description
objectList System.Collections.ArrayList

Méthodes publiques

Méthode Description
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

Méthodes protégées

Méthode Description
Add ( object item ) : void

Adds an item to the collection.

Method Details

Add() protected méthode

Adds an item to the collection.
protected Add ( object item ) : void
item object
Résultat void

BaseCollection() public méthode

public BaseCollection ( ) : System
Résultat System

Clear() public méthode

Clears all objects from the collection.
public Clear ( ) : void
Résultat void

CopyTo() public méthode

public CopyTo ( System array, int index ) : void
array System
index int
Résultat void

GetEnumerator() public méthode

public GetEnumerator ( ) : System.Collections.IEnumerator
Résultat System.Collections.IEnumerator

MoveNext() public méthode

Moves to the next item in the enumeration if there is one.
public MoveNext ( ) : bool
Résultat bool

Remove() public méthode

Removes the item from the collection.
public Remove ( object item ) : void
item object
Résultat void

Reset() public méthode

Resets the in progress enumerator.
public Reset ( ) : void
Résultat void

this() public méthode

public this ( int index ) : object
index int
Résultat object

Property Details

objectList protected_oe property

protected ArrayList,System.Collections objectList
Résultat System.Collections.ArrayList