我有Test project library
&需要将值的数量定义为配置。所以我继续前进将app.config文件添加到类库中。
<add key="url" value="http://www.google.com">
在其中一个库项目中,Browser.cs
我试图通过添加对System.Configuration的引用来读取该值。
public void GetUrl()
{
var obj = new Page();
obj.Url = ConfigurationManager.Appsettings["Url"].toString();
//it is returning null
}
&安培;没有exe或web项目,它是Test Project&amp; amp;班级图书馆。
我如何以正确的方式满足这样的要求?