What compelling reasons exist for using them?
|
|
|||||||||||
|
|
|
|
|||
|
|
|
|
Resource files enable you to change the text/graphics your program will display without editting the code of the program itself. For many reasons, it is often considered ideal to avoid needing to edit your program's source code in order to make changes that are not part of your application's logic. |
||
|
|
|
|
As a supplement to the other answers, which I've upvoted, I'd like to add that string resources are for human-readable text, not constants that will be used programmatically. They're great for error messages, button labels and the like. Very often, rather than the final string, we store a format string so that variables can be substituted in at the last moment. The nice thing about this method is that, unlike concatenation, it's not broken when a language has different word order requirements. |
||
|
|
|
With resx you can have one per language (that is spoken language not programming language) enabling your program / system to be multilingual. |
||
