Creating a new resource reader : Resource ResX « Development Class « C# / C Sharp






Creating a new resource reader

Creating a new resource reader
  

using System;
using System.Resources;
using System.Collections;

public class MyResourceReader : IResourceReader, IEnumerable {
  private Hashtable dict;
  private string fResName;

  void IResourceReader.Close() {
  }

  public void Dispose(){
    
  }
  IDictionaryEnumerator IResourceReader.GetEnumerator()
  {
    return dict.GetEnumerator();
  }

  IEnumerator IEnumerable.GetEnumerator()
  {
    return dict.GetEnumerator();
  }

  public MyResourceReader(string resName)
  {
    fResName = resName;
    dict = new Hashtable();
    dict.Add("Greeting", "Hello");
    dict.Add("Program", "My Program");
    dict.Add("Test Resource", "www.java2s.com");
  }
}

class Test {
  public static void Main() {
    MyResourceReader reader = new MyResourceReader("MyResources");
    IDictionaryEnumerator dict = ((IResourceReader)reader).GetEnumerator();
    while ( dict.MoveNext() )
    {
     string s = (string)dict.Key;
     if ( s == "Greeting" )
       Console.WriteLine("{0}", dict.Value);
    }
  }
}

           
         
    
  








Related examples in the same category

1.Create resource file and read value from it using IDictionaryEnumeratorCreate resource file and read value from it using IDictionaryEnumerator
2.Create resource file and read value from itCreate resource file and read value from it
3.Create File Based Resource Manager
4.ResX Resource WriterResX Resource Writer
5.Save Image file to resource fileSave Image file to resource file
6.Compile resource into the final exe fileCompile resource into the final exe file
7.Generate resource file with image
8.Save and load image from resource file
9.Save and read value from resx resource file
10.Writing a resource file programmatically
11.Reading resourcesReading resources
12.Resource file generator application for difference languages
13.Read Resource for difference langaugesRead Resource for difference langauges
14.Load Rescouce BMP image Load Rescouce BMP image
15.Get String Resource
16.Get Embedded Resource String
17.Get Resource As Bytes