System::Collections::IEnumeratorImplRefType class
IEnumeratorImplRefType class
Wrapper the creates non generic IEnumerator implementation over the generic Iterator IEnumeratorImplRefType - wrapper for the Reference Types.
template<typename T>class IEnumeratorImplRefType : public System::Collections::IEnumerator
| Parameter | Description | 
|---|
| T | Element type. | 
Methods
| Method | Description | 
|---|
| get_Current() const override | Gets current element. | 
| IEnumeratorImplRefType(System::SharedPtr<System::Collections::Generic::IEnumerator<System::SharedPtr<T>>>) | wrapper constructor | 
| MoveNext() override | Moves enumerator to the next element. If no element was referenced before, sets reference to the first element available. If container end was hit, does nothing. | 
See Also