To Examples
ResX Example, source code file Program.cs
using System; using System.Drawing; using System.Resources; // Create an XML resource file with an embedded image // encoded in base 64 notation. namespace ResX { public class Program { public static void Main() { // Load image into memory. Image img = Image.FromFile("../../fred-flintstone.jpg"); // Declare and instantiate ResXResource writer. ResXResourceWriter rsxw = new ResXResourceWriter("../../flintstone.resx"); // Add image to resource file. rsxw.AddResource("fred", img); // Close resource writer. rsxw.Close(); } } }