mirror of
https://github.com/2dust/v2rayN.git
synced 2025-08-26 12:56:58 +00:00
20 lines
439 B
C#
20 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));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|