关于错误“System.Configuration”中不存在类型或命名空间名称“ConfigurationManager”

 

好几次在代码中使用了System.Configuration.ConfigurationSettings.GetConfig方法,但每次使用之后都出现如下提示:



  但奇怪的是每次按系统提示调用System.Configuration.ConfigurationManager.GetSection方法时都出现以下错误:命名空间“System.Configuration”中不存在类型或命名空间名称“ConfigurationManager”(是缺少程序集引用吗?)。以前都尝试失败后就继续使用GetSection方法,今天再次尝试又出错,于是就去查阅了MSDN,关于ConfigurationManager类的说明如下:
关于错误“System.Configuration”中不存在类型或命名空间名称“ConfigurationManager”_第1张图片

关于ConfigurationSettings类的说明如下:
关于错误“System.Configuration”中不存在类型或命名空间名称“ConfigurationManager”_第2张图片
  哈哈,原来ConfigurationSetting属于system.dll程序集中,而ConfigurationManager属于system.configration.dll程序集中,系统默认引入的程序集中不包含system.configration.dll程序集,所以只需引用system.configration.dll程序集就可以了。

你可能感兴趣的:(关于错误“System.Configuration”中不存在类型或命名空间名称“ConfigurationManager”)