Resource File

  • Thread starter Thread starter MFRASER
  • Start date Start date
M

MFRASER

I am creating a resource file to help with localizing my software, and I cam
accross the following text, how should I handle this text in the resource
file?


"&Refresh"
<data name="AppManagement.SnapIns.ResourceStrings.Text.Refresh">

<value>?</value>

</data>
 
this works for me, but don't know how exactly it should be....

ResourceManager mRes = new
ResourceManager(YOURApplicationAssemblyName.Properties.Resources.YourStringName, Assembly.GetExecutingAssembly());
String mString = mRes.BaseName.ToString();
 
Back
Top