views:

388

answers:

3

When should I use .resx file and when go for .config file?

What is the basic difference between the both in terms of usage?

+1  A: 

resx are for localizable resources. You also need them for non-string resources. .config, as its name suggests is for configuration information

Krzysztof Koźmic
A: 

Use a config for application settings that apply to everyone and a resx for resource data and information that might differ by language/culture (such as labels and error strings)

Chris Simpson
A: 

If you have some text in a page that you would like to display differently for different languages, or be able to modify without recompiling your application, you can put this into a resource file.

The config file contains application configurations. The config file is a (more) secure location for holding information, and should be kept as small as possible. You will also only have one configuration file per application instance (or at least project), while you may have many resource files, for instance a web project may have a resource file per web page.

CodeBadger