ConfigurationManager中类的.NET 4.5框架不存在(Configuration

2019-08-01 14:17发布

我刚开始使用.NET框架4.5的C#的工作。 我使用Windows窗体应用程序。 我必须做必要的进口,如:

using System.Configuration;

但实际上ConfigurationManager中类似乎是不退出。 我曾尝试使用ConfigurationSettings代替,但Visual STDIO告诉我,这是过时的和ConfigurationManager中更换!

这是有关问题的代码块:

Int32.Parse StartingMonth = int.parse(ConfigurationManager.AppSettings["StartingMonthColumn"]);

所以,你能帮帮我吗?

Answer 1:

  1. 请确保您添加System.Configuration.dll到项目中。 如果你已经添加它,尝试删除,然后重新添加。
  2. 把光标ConfigurationManager ,然后按CTRL +。 ,看看它表明你。


Answer 2:

右击项目 - >添加 - >参考...->组件 - >框架选择System.Configuration(选中)就可以解决这个问题。



Answer 3:

这是因为参考,我只是重新启动该项目将基准和它工作正常后:)



Answer 4:

ConfigurationManager中存在于System.Configuration命名空间,但它需要在你的项目中System.Configuration组装。



Answer 5:

如果您无法在这里找到引用是正确的路径

“C:\ WINDOWS \ Microsoft.NET \装配\ GAC_MSIL \ System.Configuration \ v4.0_4.0.0.0__b03f5f7f11d50a3a”

转到加载参考和选择浏览器选项,去上面的链接。 然后,您可以添加System.Configuration.dll



文章来源: ConfigurationManager Class not exist on .NET 4.5 Framework
标签: c# .net .net-4.5