PaintServer.cs
上传用户:yiyuerguo
上传日期:2014-09-27
资源大小:3781k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Runtime.Remoting;
  3. //using PaintCoordinator;
  4. namespace PaintServer
  5. {
  6. /// <summary>
  7. /// Class1 的摘要说明。
  8. /// </summary>
  9. public class PaintServer
  10. {
  11. /// <summary>
  12. /// 应用程序的主入口点。
  13. /// </summary>
  14. [STAThread]
  15. static void Main(string[] args)
  16. {
  17. //
  18. // TODO: 在此处添加代码以启动应用程序
  19. //
  20. RemotingConfiguration.Configure("../../PaintServer.exe.config");
  21. Console.WriteLine("The Server is running...");
  22. Console.ReadLine();
  23. }
  24. }
  25. }