找不到配置管理器

发布于 2024-10-07 12:44:28 字数 281 浏览 3 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

姐不稀罕 2024-10-14 12:44:28

确保您有对程序集 System.Configuration.dll 的引用

Make sure you have a reference to the assembly System.Configuration.dll

掩饰不了的爱 2024-10-14 12:44:28

项目->添加参考文献-> .NET->选择系统.配置

“项目 添加引用 -> .NET -> 选择 System.Configuration">

Project -> Add References -> .NET -> select System.Configuration

Project -> Add References -> .NET -> select System.Configuration

苍景流年 2024-10-14 12:44:28

我必须安装 NuGet 包 System.Configuration.ConfigurationManager 在我的 Visual Studio 2019 C# 项目中。

例如,

Install-Package System.Configuration.ConfigurationManager -Version 4.7.0

I had to Install NuGet package System.Configuration.ConfigurationManager in my Visual Studio 2019 C# project.

E.g.,

Install-Package System.Configuration.ConfigurationManager -Version 4.7.0
梦一生花开无言 2024-10-14 12:44:28

我自己也遇到了这个问题,实际上包含了对 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...

生死何惧 2024-10-14 12:44:28

尝试使用 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"

梦与时光遇 2024-10-14 12:44:28

添加对 System.Configuration 的引用:

菜单栏 ->项目->添加参考... -> .NET(选项卡)->系统.配置->好的

Add the reference to System.Configuration:

Menu Bar -> Project -> Add Reference... -> .NET (Tab) -> System.Configuration -> OK

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文