mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-29 01:18:06 +08:00
32 lines
634 B
C#
Executable File
32 lines
634 B
C#
Executable File
/*
|
|
* Created by SharpDevelop.
|
|
* User: gfdgd xi
|
|
* Date: 2022/11/5
|
|
* Time: 17:22
|
|
*
|
|
* To change this template use Tools | Options | Coding | Edit Standard Headers.
|
|
*/
|
|
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CheckNet
|
|
{
|
|
/// <summary>
|
|
/// Class with program entry point.
|
|
/// </summary>
|
|
internal sealed class Program
|
|
{
|
|
/// <summary>
|
|
/// Program entry point.
|
|
/// </summary>
|
|
[STAThread]
|
|
private static void Main(string[] args)
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new MainForm());
|
|
}
|
|
|
|
}
|
|
}
|