[ Team LiB ] Previous Section Next Section

IEnumerableCF 1.0, ECMA 1.0

System.Collections (mscorlib.dll)interface

This interface exposes an enumerator to iterate over a collection. The GetEnumerator( ) method returns an IEnumerator for the object.

public interface IEnumerable {
// Public Instance Methods
   public IEnumerator GetEnumerator( );
}

Implemented By

Multiple types

    [ Team LiB ] Previous Section Next Section