IEnumerable
[Properties (by Name)][Methods (by Name)][Events (by Name)]
Interface to retrieve an enumerator from a class.
Declaration
Source position: objpash.inc line 282
Type
  IEnumerable = interface (IInterface)
    function GetEnumerator : IEnumerator;
  end
  ;
Description
IEnumerable can be used to get an enumerator from a class. If a class implements IEnumerable, it can return an enumerator interface IEnumerator .
Members
| Member | Type | Visibility | Description | 
|---|---|---|---|
| GetEnumerator | Method | default | Return an enumerator interface for this class | 
Inheritance
| Class | Description | 
|---|---|
| IEnumerable | Interface to retrieve an enumerator from a class. | 
See also
| Name | Description | 
|---|---|
| IEnumerator | Enumerator support interface |