Create resource file and read value from it : Resource ResX « Development Class « C# / C Sharp






Create resource file and read value from it

Create resource file and read value from it
  

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

class Class1 {
  static void Main(string[] args) {
      ResourceWriter resourceWriter = new ResourceWriter("Java2s.resources");

      resourceWriter.AddResource("key 1", "First value");
      resourceWriter.AddResource("key 2", "Second value");
      resourceWriter.AddResource("key 3", "Third value");
      resourceWriter.Generate();
      resourceWriter.Close();

      ResourceSet Rs = new ResourceSet("Java2s.resources");

      Console.WriteLine(Rs.GetString("key 1 ", true));
      Console.WriteLine(Rs.GetString("key 2", true));
      Console.WriteLine(Rs.GetString("key 3", true));
      Console.WriteLine(Rs.GetDefaultReader().ToString());

      Rs.Close();

   }
}

           
         
    
  








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 File Based Resource Manager
3.ResX Resource WriterResX Resource Writer
4.Save Image file to resource fileSave Image file to resource file
5.Compile resource into the final exe fileCompile resource into the final exe file
6.Generate resource file with image
7.Save and load image from resource file
8.Save and read value from resx resource file
9.Writing a resource file programmatically
10.Reading resourcesReading resources
11.Resource file generator application for difference languages
12.Read Resource for difference langaugesRead Resource for difference langauges
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