无法从同一类库中的 app.config 文件读取设置

发布于 2024-12-04 04:30:56 字数 182 浏览 1 评论 0原文

我正在尝试从我的 app.config 文件中读取类文件中的设置。 这两个文件都位于 ClassLibrary 中。文件夹结构如下:

ClassLibrary
-Folder1
--Folder2
---ClassFile.cs

App.config

返回值为Null。 请指教。

I am trying to read settings in a class file, from my app.config file.
Both files are in a ClassLibrary. Folder structure is as follows:

ClassLibrary
-Folder1
--Folder2
---ClassFile.cs

App.config

The values returned are Null.
Kindly advise.

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

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

发布评论

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

评论(1

国粹 2024-12-11 04:30:56

类库没有配置文件——应用程序有。

原因之一是类库不能直接执行——它们只能在应用程序的上下文中运行。

app.config 文件放在您的应用程序/测试工具(例如 exe 或网站)中。此时库将能够读取配置。

注意:您应该将配置作为依赖项传递到您的库中。这是更好的设计 - 应用程序可以告诉库如何配置,并且还有可测试性的额外好处(您可以测试而无需拥有.config)。

有关更多详细信息,请参阅这个 SO答案。

Class libraries do not have configuration files - applications do.

One reason is that class libraries cannot be directly executed - they can only be run in the context of an application.

Have the app.config file in your application/test harness (exe or website, for example). The library will be able to read the configuration at that point.

Note: You should be passing configuration into your library as a dependency. This is better design - the application can tell the library how to be configured and there is the added bonus of testability (you can test without having to have a .config).

See this SO answer for more details.

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