| 123456789101112131415161718192021 |
- using System;
- namespace ET
- {
- internal static class Init
- {
- private static int Main(string[] args)
- {
- try
- {
- ExcelExporter.Export();
- }
- catch (Exception e)
- {
- Log.Console(e.ToString());
- }
- Console.WriteLine("excelexporter ok!");
- return 1;
- }
- }
- }
|