Click or drag to resize

ISharedEnumeratorT Interface

Supports a simple iteration over a generic collection.

Namespace:  EBP.Framework.Common.Interfaces.Shared
Assembly:  EBP.Framework.Common.Interfaces (in EBP.Framework.Common.Interfaces.dll) Version: 4.0.0.0 (4.0.0.0)
Syntax
public interface ISharedEnumerator<T> : IEnumerator<T>, 
	IDisposable, IEnumerator

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:EBP.Framework.Common.Interfaces.Shared.ISharedEnumerator`1"]

The ISharedEnumeratorT type exposes the following members.

Properties
  NameDescription
Public propertyCurrent
Gets the element in the collection at the current position of the enumerator.
(Inherited from IEnumeratorT.)
Top
Methods
  NameDescription
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable.)
Public methodMoveNext
Advances the enumerator to the next element of the collection.
(Inherited from IEnumerator.)
Public methodReset
Sets the enumerator to its initial position, which is before the first element in the collection.
(Inherited from IEnumerator.)
Top
See Also