1
0
mirror of synced 2025-12-17 10:38:10 +08:00
Files
SnowFlake-IdGenerator/C#.NET/source/YitIdGen.WinFormApp/Program.cs
2021-04-01 02:38:11 +08:00

24 lines
601 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WInFormApp
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new StartForm());
}
}
}