.NET 中的 .resx 和 .config 文件有什么区别?

发布于 2024-07-13 14:26:54 字数 73 浏览 6 评论 0原文

我什么时候应该使用 .resx 文件,什么时候应该使用 .config 文件?

两者在使用方面的基本区别是什么?

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

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

想念有你 2024-07-20 14:26:54

如果您希望页面中的某些文本针对不同语言以不同方式显示,或者能够在不重新编译应用程序的情况下进行修改,则可以将其放入资源文件中。

配置文件包含应用程序配置。 配置文件是保存信息的(更)安全位置,并且应保持尽可能小。 每个应用程序实例(或至少项目)也只有一个配置文件,而您可能有许多资源文件,例如 Web 项目的每个网页可能有一个资源文件。

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.

笑梦风尘 2024-07-20 14:26:54

resx 用于可本地化的资源。
您还需要它们来获取非字符串资源。
.config,顾名思义就是配置信息

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

绳情 2024-07-20 14:26:54

使用适用于每个人的应用程序设置的配置,以及可能因语言/文化而异的资源数据和信息(例如标签和错误字符串)的 resx

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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文