vote up 4 vote down star

What compelling reasons exist for using them?

flag

2  
How about "the desire to use resources"? Please give us a better idea of what you really want to know. – John Saunders Jul 15 at 20:59
1  
If you've never used a resx file before, but have your own string tables and the like (or worse, strings scattered throughout the code, all locally defined) and haven't seen a reason to change that approach, then this is a legit question. – mmr Jul 15 at 21:03
I've never used resx before. That is the reason behind the question. – Newbie Jul 16 at 14:50

4 Answers

vote up 9 vote down check
  • Resource files give you an easy way to localize/internationalize your .net applications by automatically determining which language resx file to use based on the user's locale. To add more languages, simply add another translated resource file.

  • Resource files give you a central location to store your strings, files and scripts and refer to them in a strongly-typed manner (so the compile will break if you reference them improperly).

  • Resource files can be compiled into satellite assemblies, making it easy to change up the resources in a production application without having to recompile the whole thing.

link|flag
vote up 3 vote down

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.

link|flag
vote up 4 vote down

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.

link|flag
+1 for bringing up the use of format strings – Fredrik Mörk Jul 15 at 21:12
vote up 9 vote down

With resx you can have one per language (that is spoken language not programming language) enabling your program / system to be multilingual.

link|flag
2  
Yes - the world is NOT just speaking English! – marc_s Jul 15 at 21:06
@marc_s: What? That's just silly-talk. – Randolpho Jul 15 at 21:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.