ConfigurationManager 在 Visual Studio 2013 的当前上下文中不存在
ConfigurationManager does not exist in current context in Visual Studio 2013
嗨,我正在观看 youtube 上的一个视频如何连接 connectionString,在他的视频中他是这样的
string connectionString = ConfigurationManager.ConnectionStrings["hotelConnection"].ToString();
这对他来说非常好。但是当它来找我时,它给了我一个错误,上面写着 "does not exist in the current context"
他使用的是 VS 2010,而我使用的是 VS2013.. 我 google 不明白为什么会这样,因为它是版本。关于如何解决该部分的任何想法?
在引用文件夹中,检查是否有 System.Configuration
程序集,如果没有则使用 add reference
选项添加。之后在顶部包含以下命名空间:-
using System.Configuration;
检查是否有System.Configuration程序集,如果没有请添加
在文档顶部试试这个(推荐)
using System.Configuration;
否则在行中写为System.Configuration.ConfigurationManager.ConnectionStrings["hotelConnection"].ToString()
嗨,我正在观看 youtube 上的一个视频如何连接 connectionString,在他的视频中他是这样的
string connectionString = ConfigurationManager.ConnectionStrings["hotelConnection"].ToString();
这对他来说非常好。但是当它来找我时,它给了我一个错误,上面写着 "does not exist in the current context" 他使用的是 VS 2010,而我使用的是 VS2013.. 我 google 不明白为什么会这样,因为它是版本。关于如何解决该部分的任何想法?
在引用文件夹中,检查是否有 System.Configuration
程序集,如果没有则使用 add reference
选项添加。之后在顶部包含以下命名空间:-
using System.Configuration;
检查是否有System.Configuration程序集,如果没有请添加
在文档顶部试试这个(推荐)
using System.Configuration;
否则在行中写为System.Configuration.ConfigurationManager.ConnectionStrings["hotelConnection"].ToString()