GUI Windows Forms C# Tutorial

using System;
using System.Resources;
using System.Drawing;
using System.Collections;
using System.Windows.Forms;
public class MainClass{
  public static void Main(){
    
    ResXResourceWriter w = new ResXResourceWriter("ResXForm.resx");
      
    Image i = new Bitmap("YourFile.bmp");
    w.AddResource("happyDude", i);
    
    w.AddResource("welcomeString", "Hello new resource format!");
      
    w.Generate();
    w.Close();
      
    ResXResourceReader r = new ResXResourceReader("ResXForm.resx");
    
    IDictionaryEnumerator en = r.GetEnumerator();
    while (en.MoveNext()) 
    {
      Console.WriteLine("Value:" + en.Value.ToString() + " Key: " + en.Key.ToString());
    }
    r.Close();
   }
}
Value:System.Drawing.Bitmap Key: happyDude
Value:Hello new resource format! Key: welcomeString