Program.cs 421 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Configuration;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows.Forms;
  8. namespace Pas.ScadaService
  9. {
  10. internal class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. StartUp.Start();
  15. Console.WriteLine("启动成功");
  16. Application.Run();
  17. }
  18. }
  19. }