Program.cs 299 B

1234567891011121314151617
  1. using NewLife.Reflection;
  2. using System;
  3. using System.Windows.Forms;
  4. namespace ScadaTcpService
  5. {
  6. internal class Program
  7. {
  8. static void Main()
  9. {
  10. Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:00").ToDateTime());
  11. ScadaService.Start();
  12. Application.Run();
  13. }
  14. }
  15. }