program.cs
来自「飞信的收发使用csharp进行开发」· CS 代码 · 共 22 行
CS
22 行
namespace Imps.Client.Pc
{
using System;
using System.Net;
using System.Threading;
using System.Windows.Forms;
internal static class Program
{
[STAThread]
private static void Main(string[] args)
{
Thread.CurrentThread.Name = "Imps.Client.Pc MainThread";
Application.EnableVisualStyles();
ServicePointManager.MaxServicePointIdleTime = 0x7530;
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm(args));
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?