Read a string stored in a resource file (resx) with dynamic file name
问题 In my C# application I need to create a .resx file of strings customized for every customer. What I want to do is avoid recompiling the entire project every time I have to provide my application to my customer, so I need to dynamic access to this string. So, how can I access (during the app execution) to a resx file if I kwow the file name only on the execution time? Since now I write something similar: Properties.Resources.MyString1 where Resource is my Resource.resx file. But I need