System.Configuration.ConfigurationManager未解析

时间:2014-04-23 16:04:56

标签: c#

在我的使用中,我有:

using System.Configuration;

然后在我的代码中:

string primary_adrs_key =  ConfigurationManager.AppSettings["PrimaryAddressK"];

但我收到错误:

  

“ConfigurationManager在当前上下文中不存在”

为什么呢?我错过了什么?

2 个答案:

答案 0 :(得分:11)

阅读ConfigurationManager

在项目中添加参考System.Configuration.dll

答案 1 :(得分:3)

您尚未添加对System.Configuration的引用。右键单击项目,然后单击“添加引用”。

enter image description here