码迷,mamicode.com
首页 > 其他好文 > 详细

找不到ConfigurationManager

时间:2015-06-15 16:06:05      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

第一次写C#,在命名空间中已经使用了using System.Configuration;但是使用Configuration时却无法使用,找到的解决方法是:在解决方案资源管理器中,右击“引用”,“添加引用”,把“System.Configuration”添加进来就可以了。

问题:为什么using System.Configuration;后还需要添加System.Configuration;

理解:When you add the reference you are asking the dll to be copied to the bin folder on compile/ build. Some dll‘s seen as core are added when the project is created, ie when you go file->new project so the references are set up at that point. They all have to go through the same process just that some are done for you and some you have to do manually. You could test it out by deleting the reference to your System dll and watching all your code fail.

(有时间再翻译给大家 : )

找不到ConfigurationManager

标签:

原文地址:http://www.cnblogs.com/HughParker/p/4577044.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!