c# - How retrieve neutral language resource when multiple resource files for different languages exist? -


I have multiple resource files to support various resource files Users are presented with resources in their preferred language . Additional logging is being done in an application log, for which I would like to log only using neutral language (English).

I do not want to have a dedicated resource file for English messages only, users should be able to log in the application log file in English extra to the same message shown to end in their language. .

What would be the best way to do this?

Try

  string res = resources.ResourceManager.GetString ( "...", Culture Info Inverianteculture);    

Comments