C# Class Iterator.ConcreteIterator

Inheritance: Iterator
Afficher le fichier Open project: mravinale/gof-patterns Class Usage Examples

Méthodes publiques

Méthode Description
ConcreteIterator ( ConcreteAggregate aggregate ) : System
CurrentItem ( ) : object
First ( ) : object
IsDone ( ) : bool
Next ( ) : object

Method Details

ConcreteIterator() public méthode

public ConcreteIterator ( ConcreteAggregate aggregate ) : System
aggregate ConcreteAggregate
Résultat System

CurrentItem() public méthode

public CurrentItem ( ) : object
Résultat object

First() public méthode

public First ( ) : object
Résultat object

IsDone() public méthode

public IsDone ( ) : bool
Résultat bool

Next() public méthode

public Next ( ) : object
Résultat object