IResourceReader.GetEnumerator Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.