找不到配置管理器
我是 VS 3.5 的新手,正在编写一个控制台应用程序,需要从 app.config 文件中提取一些关键值。
我有:
Imports System.Configuration
并且我正在尝试引用 ConfigurationManager.AppSettings
但这会生成错误:
未声明名称 ConfigurationManager
我缺少什么?
I am new to VS 3.5 and I am writing a console app that needs to pull some key values from the app.config file.
I have:
Imports System.Configuration
and I am trying to reference ConfigurationManager.AppSettings
but this generates an error:
Name ConfigurationManager is not declared
What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
确保您有对程序集 System.Configuration.dll 的引用
Make sure you have a reference to the assembly
System.Configuration.dll
添加引用 -> .NET -> 选择 System.Configuration">
我必须安装 NuGet 包
System.Configuration.ConfigurationManager
在我的 Visual Studio 2019 C# 项目中。例如,
I had to Install NuGet package
System.Configuration.ConfigurationManager
in my Visual Studio 2019 C# project.E.g.,
我自己也遇到了这个问题,实际上包含了对 System.Configuration 的引用,但它仍然不会显示。
我必须进入“构建”菜单,选择“清理”,然后重建。
发帖是因为六个月后,当我再次看到这个时,我可能会忘记我做了什么......
I had this problem myself and actually included the reference to System.Configuration, and it STILL wouldn't show up.
I had to go to the Build menu, select Clean, and then rebuild.
Posting because in six months when I see this again I'll probably forget what I did...
尝试使用 System.Configuration;
或
尝试通过选择
来添加参考
项目->添加参考文献-> .NET->选择 System.Configuration
现在您可以使用“ConfigurationManager”
Try using System.Configuration;
OR
Try to add reference by selecting
Project -> Add References -> .NET -> select System.Configuration
now you can use "ConfigurationManager"
添加对 System.Configuration 的引用:
菜单栏 ->项目->添加参考... -> .NET(选项卡)->系统.配置->好的
Add the reference to System.Configuration:
Menu Bar -> Project -> Add Reference... -> .NET (Tab) -> System.Configuration -> OK