📄 entrypoint.cs
字号:
using System;
using System.Windows.Forms;
using System.Data;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
namespace WebGis
{
public class EntryPoint
{
public static MapServer frmServer;
[STAThread]
static void Main()
{
TcpServerChannel channel = new TcpServerChannel(8088);
ChannelServices.RegisterChannel(channel);
RemotingConfiguration.RegisterWellKnownServiceType(typeof(MapService), "MapService", WellKnownObjectMode.Singleton);
frmServer = new MapServer();
Application.Run(frmServer);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -