markus / ConvertService / ServiceBase / Markus.Service.Station / Program.cs @ 53c9637d
이력 | 보기 | 이력해설 | 다운로드 (770 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.ServiceProcess; |
5 |
using System.Text; |
6 |
using System.Threading.Tasks; |
7 |
|
8 |
namespace Markus.Service.Station |
9 |
{ |
10 |
static class Program |
11 |
{ |
12 |
/// <summary> |
13 |
/// 해당 응용 프로그램의 주 진입점입니다. |
14 |
/// </summary> |
15 |
static void Main() |
16 |
{ |
17 |
try |
18 |
{ |
19 |
ServiceBase[] ServicesToRun; |
20 |
ServicesToRun = new ServiceBase[] |
21 |
{ |
22 |
new ServiceStation() |
23 |
}; |
24 |
ServiceBase.Run(ServicesToRun); |
25 |
} |
26 |
catch (Exception ex) |
27 |
{ |
28 |
System.Diagnostics.Debug.WriteLine(ex.ToString()); |
29 |
} |
30 |
} |
31 |
} |
32 |
} |