gpt4 book ai didi

c# - .NET 和带 DLLS 的配置文件

转载 作者:太空宇宙 更新时间:2023-11-03 18:47:26 24 4
gpt4 key购买 nike

我有点熟悉在 .NET 中使用配置,但我对某些事情有点困惑。您创建一个 App.Config 文件以与您的 exe 一起使用,您创建的任何 dll 都使用相同的配置文件。

那么如何从 DLL 中访问配置文件中的配置呢?如果您在 Visual Studio 的 DLL 项目中创建一个 settings.settings,它最终会变成空白,其中没有任何设置。

谢谢。

最佳答案

您可以使用 System.Configuration.ConfigurationManager类从 DLL 中的 app.config(或 web.config)获取设置。 AppSettings属性将从配置文件的 appSettings 部分获取数据。

NameValueCollection settings = System.Configuration.ConfigurationManager.AppSettings;
string keyValue = settings["SomeKey"];

关于c# - .NET 和带 DLLS 的配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3153523/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com