• This project
    • Loading...
  • Sign in

tao.mo / DMSSSO

Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • DMSSSO
  • DMSSSOAUTOUPGRADER
  • Program.cs
  • tao.mo's avatar
    GIT新建项目 · ce46de28
    ce46de28 Browse Files
    tao.mo authored 2020-03-26 15:44:33 +0800
Program.cs 495 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace DMSSSOAUTOUPGRADER
{
    static class Program
    {
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new DMSSSOAgetAutoUpGrader());
        }
    }
}