mirror of
https://github.com/2dust/v2rayN.git
synced 2025-08-25 20:36:55 +00:00
19 lines
439 B
C#
19 lines
439 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace v2rayUpgrade
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// 应用程序的主入口点。
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main(string[] args)
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new MainForm(args));
|
|
}
|
|
}
|
|
}
|