How do I get a list of all languages that my Windows Forms application has been localized to?
- by Andrei B
I have localized localized a Form into two language by setting the Localizable property to True and setting the Language from (Default) to (Dutch(Netherlands)), and I changed the control texts.
Visual Studio generated the resource files and compiles them into the application.
I need to get a simple list of all the languages that my form has been localized into. Currently it would be just two English and Dutch, but more may come. I need to programatically get a list of "what languages my application is localized into". Do I look into the resource files or use ResourceManager or what?
Thanks!