12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace Tofly.AutoUpdateSystem.Win
- {
- static class Program
- {
-
-
-
-
- [STAThread]
- static void Main(string[] args)
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
-
- if (args == null || args.Length == 0)
- {
- Application.Run(new FormAutoUpdate());
- }
- else
- {
- Application.Run(new FormAutoUpdateCheck());
- }
- }
- }
- }
|