Writing a resource file programmatically.

image_pdfimage_print
   


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