ResourceReader.IEnumerable.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 an enumerator for this ResourceReader object.
virtual System::Collections::IEnumerator ^ System.Collections.IEnumerable.GetEnumerator() = System::Collections::IEnumerable::GetEnumerator;
System.Collections.IEnumerator IEnumerable.GetEnumerator ();
abstract member System.Collections.IEnumerable.GetEnumerator : unit -> System.Collections.IEnumerator
override this.System.Collections.IEnumerable.GetEnumerator : unit -> System.Collections.IEnumerator
Function GetEnumerator () As IEnumerator Implements IEnumerable.GetEnumerator
Returns
An enumerator for this ResourceReader object.
Implements
Exceptions
The reader has already been closed and cannot be accessed.
Remarks
ResourceReader.IEnumerable.GetEnumerator is an explicit interface implementation. It can be used only when the ResourceReader instance is cast to an IEnumerable interface. The recommended approach to enumerating the resources in a .resources file is to call the MoveNext method of the IDictionaryEnumerator object returned by the ResourceReader.GetEnumerator method.