프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / ConvertService / ServiceBase / Markus.Service.Station / Program.cs @ c6bf88fd

이력 | 보기 | 이력해설 | 다운로드 (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
}
클립보드 이미지 추가 (최대 크기: 500 MB)