Read Resource for difference langauges : Resource ResX « Development Class « C# / C Sharp






Read Resource for difference langauges

Read Resource for difference langauges
  

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

public class Test {
  public static void DisplayGreeting( string resName ) {
    try {
      ResourceReader reader = new ResourceReader(resName+".resources");
      IDictionaryEnumerator dict = reader.GetEnumerator();
      while ( dict.MoveNext() ) {
        string s = (string)dict.Key;
        if ( s == "Greeting" )
          Console.WriteLine("{0}", dict.Value);
        }
    } catch ( Exception e ) {
        Console.WriteLine("Exception creating manager {0}", e );
        return;
    }
  }

  public static void Main(string[] args) {
    DisplayGreeting("Eng");
    DisplayGreeting("Span");
    DisplayGreeting("French");
  }
}
           
         
    
  








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.Creating a new resource readerCreating a new resource reader
14.Load Rescouce BMP image Load Rescouce BMP image
15.Get String Resource
16.Get Embedded Resource String
17.Get Resource As Bytes