OTP/OTP/Program.cs
2023-09-02 15:07:55 +08:00

20 lines
419 B
C#

using System;
using System.Windows.Forms;
namespace OTP
{
internal static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}