Windows服务中的App

Windows服务中的App

本文介绍了Windows服务中的App.config的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


在尝试读取App.Config文件中的连接字符串时,出现错误,例如对象引用未设置为对象的实例."
string strconn = System.Configuration.ConfigurationManager.AppSettings["ConnectionString"].ToString();

对于Windows服务,我需要保留app.config文件以及操作方法.

预先感谢.

Hi,
While I''m trying to read connection string which is in App.Config file I''m getting error like "Object reference not set to an instance of an object."
string strconn = System.Configuration.ConfigurationManager.AppSettings["ConnectionString"].ToString();

For the windows service where I need to keep app.config file and how.

Thanks in advance.

推荐答案


这篇关于Windows服务中的App.config的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 22:29