Writing a resource file programmatically. : ResourceWriter : GUI Windows Form C# Source Code


Custom Search

C# Source Code » GUI Windows Form » ResourceWriter »

 

Writing a resource file programmatically.








    


using System;
using System.Resources;

class MainClass {
    public static void Main() {
        ResourceWriter rw = new ResourceWriter("English.resources");
        rw.AddResource("PgmName", "AAA");
        rw.AddResource("PgmVer", 1.0);
        rw.AddResource("PgmAuthor", "VVVV");
        rw.Close();
    }
}

           
       
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo GUI Windows Form
» ResourceWriter