這個問題分兩部分。 我有一個控制檯應用程序,它從幾臺服務器獲取信息並將此信息保存到數據庫。爲了enabel這執行simultaniously我已經使用線程。我正在嘗試每分鐘自動執行一次該執行。 搜索計算器我發現,這可能是工作: var timer = new System.Threading.Timer((e) =>
{
var models = ServerHandle
當Windows服務啓動 ,我發現這裏的解決方案,但他們並沒有爲我工作,我有以下的代碼,它不執行。 using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.ServicePro
我有我下面這個教程後,開發非常簡單的窗口服務:http://www.c-sharpcorner.com/UploadFile/naresh.avari/develop-and-install-a-windows-service-in-C-Sharp/ 不過,我注意到,ElapsedEventHandler從來不像教程觸發: public partial class Scheduler : Serv