Mega Code Archive

 
Categories / C# / GUI Windows Form
 

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();     } }