Compile resource into the final exe file : Resource ResX « Development Class « C# / C Sharp






Compile resource into the final exe file

Compile resource into the final exe file
  

//csc /res:StringTable.resources Test.cs


//File: Test.cs
using System;
using System.Windows.Forms;
using System.Resources;
using System.Reflection;
public class Test
{
   
    public static void Main(String[] a)
    {
        ResourceManager FormResources = new ResourceManager("StringTable", Assembly.GetExecutingAssembly());
        string          Message;
        
        Message = FormResources.GetString("Message");
        MessageBox.Show(Message);
    }
}

//resgen StringTable.txt



/* File:StringTable.txt
#=============
# String Table
#=============
Message = The button has been clicked.

*/
           
         
    
  








Related examples in the same category

1.Create resource file and read value from it using IDictionaryEnumeratorCreate resource file and read value from it using IDictionaryEnumerator
2.Create resource file and read value from itCreate resource file and read value from it
3.Create File Based Resource Manager
4.ResX Resource WriterResX Resource Writer
5.Save Image file to resource fileSave Image file to resource file
6.Generate resource file with image
7.Save and load image from resource file
8.Save and read value from resx resource file
9.Writing a resource file programmatically
10.Reading resourcesReading resources
11.Resource file generator application for difference languages
12.Read Resource for difference langaugesRead Resource for difference langauges
13.Creating a new resource readerCreating a new resource reader
14.Load Rescouce BMP image Load Rescouce BMP image
15.Get String Resource
16.Get Embedded Resource String
17.Get Resource As Bytes