C# Class Cream.AllenTemporal.AllenDomain.AllenDomainIterator

Inheritance: IEnumerator
Mostrar archivo Open project: kikoanis/CSharpCream

Private Properties

Property Type Description
InitBlock void

Public Methods

Method Description
AllenDomainIterator ( AllenDomain enclosingInstance ) : System

Initializes a new instance of the AllenDomainIterator class.

MoveNext ( ) : bool

Advances the enumerator to the next element of the collection.

Reset ( ) : void

Sets the enumerator to its initial position, which is before the first element in the collection.

Private Methods

Method Description
InitBlock ( AllenDomain eI ) : void

Inits the block.

Method Details

AllenDomainIterator() public method

Initializes a new instance of the AllenDomainIterator class.
public AllenDomainIterator ( AllenDomain enclosingInstance ) : System
enclosingInstance AllenDomain The enclosing instance.
return System

MoveNext() public method

Advances the enumerator to the next element of the collection.
/// The collection was modified after the enumerator was created. ///
public MoveNext ( ) : bool
return bool

Reset() public method

Sets the enumerator to its initial position, which is before the first element in the collection.
/// The collection was modified after the enumerator was created. ///
public Reset ( ) : void
return void