gpt4 book ai didi

c# - 从类库项目中的 App.config 中读取

转载 作者:可可西里 更新时间:2023-11-01 03:06:54 26 4
gpt4 key购买 nike

我正在开发一个简单的类库项目,它将给我一个dll。

我想从配置文件中读取一个特定的值。所以我在我的项目中添加了一个 App.config 文件。

 <?xml version="1.0" encoding="utf-8" ?>
<configuration>

<appSettings>
<add key="serviceUrl" value="test value" />
</appSettings>

</configuration>

上面是我的 App.config 文件,现在我尝试按如下方式读取它

  string strVal = System.Configuration.ConfigurationManager.AppSettings["serviceUrl"];

但是我的字符串变量没有得到任何值。

enter image description here

我以类似的方式为 Web 应用程序完成了此操作并且成功了。但不知何故,我无法使它正常工作。

首先在类库项目中使用 App.config 的想法是否正确?

最佳答案

如我的评论所述,将 App.Config 文件添加到主解决方案而不是类库项目中。

关于c# - 从类库项目中的 App.config 中读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9871948/

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