找不到ConfigurationManager

问题:第一次写C#,在命名空间中已经使用了using System.Configuration;可是使用Configuration时却没法使用;ui

解决方案:在解决方案资源管理器中,右击“引用”,“添加引用”,把“System.Configuration”添加进来就能够了;翻译

问题2:为何using System.Configuration;后还须要添加System.Configuration;code

理解: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.资源

(有时间再翻译给你们 : )it

相关文章
相关标签/搜索