PaintServer.cs
资源名称:Visual.rar [点击查看]
上传用户:yiyuerguo
上传日期:2014-09-27
资源大小:3781k
文件大小:1k
源码类别:
C#编程
开发平台:
Others
- 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();
- }
- }
- }