markus / ConvertService / ServiceBase / ConvertResultBSENG_test / Program.cs @ 77cdac33
이력 | 보기 | 이력해설 | 다운로드 (652 Bytes)
1 |
using Markus.Service; |
---|---|
2 |
using System; |
3 |
using System.Collections.Generic; |
4 |
using System.Linq; |
5 |
using System.Text; |
6 |
using System.Threading.Tasks; |
7 |
|
8 |
namespace ConvertResultBSENG_test |
9 |
{ |
10 |
class Program |
11 |
{ |
12 |
static void Main(string[] args) |
13 |
{ |
14 |
Console.WriteLine("input ConvertID : "); |
15 |
|
16 |
var id = Console.ReadLine(); |
17 |
|
18 |
try |
19 |
{ |
20 |
PluginService.Run(id); |
21 |
} |
22 |
catch (Exception ex) |
23 |
{ |
24 |
Console.WriteLine(ex.ToString() + ex.InnerException?.ToString()); |
25 |
} |
26 |
|
27 |
|
28 |
Console.ReadKey(); |
29 |
|
30 |
} |
31 |
} |
32 |
} |