次の方法で共有


ResourceReader.GetEnumerator メソッド

この ResourceReader の列挙子を返します。

Public Overridable Function GetEnumerator() As IDictionaryEnumerator _   Implements IResourceReader.GetEnumerator
[C#]
public virtual IDictionaryEnumerator GetEnumerator();
[C++]
public: virtual IDictionaryEnumerator* GetEnumerator();
[JScript]
public function GetEnumerator() : IDictionaryEnumerator;

戻り値

この ResourceReaderIDictionaryEnumerator

実装

IResourceReader.GetEnumerator

例外

例外の種類 条件
InvalidOperationException リーダーが既に閉じられているため、アクセスできません。

使用例

 
Imports System
Imports System.Resources
Imports System.Collections
Imports Microsoft.VisualBasic

Class EnumerateResources
   
   Public Shared Sub Main()
      ' Create a ResourceReader for the file items.resources.
      Dim rr As New ResourceReader("items.resources")      
      
      ' Create an IDictionaryEnumerator to iterate through the resources.
      Dim id As IDictionaryEnumerator = rr.GetEnumerator()
      
      ' Iterate through the resources and display the contents to the console. 
      While id.MoveNext()
         Console.WriteLine(ControlChars.NewLine + "[{0}] " + ControlChars.Tab + "{1}", id.Key, id.Value)
      End While 

      rr.Close()

   End Sub

End Class

[C#] 
using System;
using System.Resources;
using System.Collections;

class EnumerateResources 
{
    public static void Main() 
    {
        // Create a ResourceReader for the file items.resources.
        ResourceReader rr = new ResourceReader("items.resources"); 

        
        // Create an IDictionaryEnumerator to iterate through the resources.
        IDictionaryEnumerator id = rr.GetEnumerator(); 

        // Iterate through the resources and display the contents to the console. 
        while(id.MoveNext())
          Console.WriteLine("\n[{0}] \t{1}", id.Key, id.Value); 

        rr.Close();     
 
    }
}

[C++] 
#using <mscorlib.dll>

using namespace System;
using namespace System::Resources;
using namespace System::Collections;

int main() {
    // Create a ResourceReader for the file items.resources.
    ResourceReader* rr = new ResourceReader(S"items.resources");


    // Create an IDictionaryEnumerator* to iterate through the resources.
    IDictionaryEnumerator* id = rr->GetEnumerator();

    // Iterate through the resources and display the contents to the console.
    while(id->MoveNext())
        Console::WriteLine(S"\n [{0}] \t {1}", id->Key, id->Value);

    rr->Close();

}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

参照

ResourceReader クラス | ResourceReader メンバ | System.Resources 名前空間 | IDictionary | IDictionaryEnumerator