我有一个Windows轮询服务每10分钟发送一次自动发送电子邮件。我用Thread.Sleep(new TimeSpan(0, 10, 0));
让线程睡了10分钟,现在硬编码了。
为了避免硬编码,我尝试了App.config
但没有成功。我想将硬编码移动到一些.ini
文件。如何从C#Windows服务中读取.ini
文件。
编辑:我尝试以下代码从我的Windows服务中读取。
string pollingInterval = (string)new AppSettingsReader().GetValue("PollingInterval", typeof(string));
给出以下错误。 Configuration system failed to initialize
答案 0 :(得分:4)
app.config
是比INI文件更好的解决方案。
您的app.config
文件如下所示:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
.......
<appSettings>
<add key="TimerInterval" value="10" />
</appSettings>
.......
</configuration>
你读它就像:
int timerInterval = Convert.ToInt32(ConfigurationManager.AppSettings["TimerInterval"]);
您需要导入名称空间using System.Configuration;
并添加对System.Configuration dll的引用。
答案 1 :(得分:2)
使用App.config就像
一样简单string interval = ConfigurationManager.AppSettings["interval"];
TimeSpan t;
TimeSpan.TryParseExact(interval, @"h\:m\:s", CultureInfo.InvariantCulture, out t);
(不要忘记添加引用System.Configuration
汇编和using System.Configuration
+ System.Globalization
)
您的App.config:
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="interval" value="00:10:00" />
</appSettings>
</configuration>