123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Configuration;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace Pas.ScadaService
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- StartUp.Start();
- Console.WriteLine("启动成功");
- Application.Run();
- }
-
- }
- }
|