paintserver.cs
来自「网络应用」· CS 代码 · 共 27 行
CS
27 行
using System;
using System.Runtime.Remoting;
//using PaintCoordinator;
namespace PaintServer
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
public class PaintServer
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: 在此处添加代码以启动应用程序
//
RemotingConfiguration.Configure("../../PaintServer.exe.config");
Console.WriteLine("The Server is running...");
Console.ReadLine();
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?