IResourceReader.GetEnumerator Method

Definition

Returns a dictionary enumerator of the resources for this reader.

public:
 System::Collections::IDictionaryEnumerator ^ GetEnumerator();
public System.Collections.IDictionaryEnumerator GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.IDictionaryEnumerator
Public Function GetEnumerator () As IDictionaryEnumerator

Returns

A dictionary enumerator for the resources for this reader.

Remarks

Because IResourceReader inherits the IEnumerable interface, it must also provide an implementation of the IEnumerable.GetEnumerator method, which returns an IEnumerator object that can be used to enumerate a collection. Typically, IEnumerable.GetEnumerator is implemented as an explicit interface implementation.

Applies to

See also