我在VS2015终极版中的代码是:
BrowserWindow browser = BrowserWindow.Launch(ConfigurationManager.AppSettings["URL"]);
在使用这个代码时,我在代码中遇到了错误,当我鼠标悬停在它上时,我得到了这个'object' does not contain a definition for "AppSettings" and no extension method 'AppSettings' accepting a first argument of type object could be found(are you missing a using directive or an assembly reference?)
。
但我提供了using System.Configuration;
。这段代码在VS2012终极版中运行得非常完美。有人能为我提供这个问题的解决方案吗?
我得到了解决方案,我使用了以下代码
BrowserWindow.Launch(System.Configuration.ConfigurationManager.AppSettings["URL"]);
此外,我还在参考文献中添加了System.configuration
。然后它就起作用了。