Listing 8

public interface class IEnumerator
{
    bool MoveNext();
    void Reset();
    property Object^ Current { Object^ get(); }
};