HelloClient.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Runtime.Remoting.Channels;
  3. using System.Runtime.Remoting.Channels.Tcp;
  4. using System.Runtime.Remoting.Channels.Http;
  5. using System.Runtime.Remoting;
  6. using System.Runtime.Remoting.Activation;
  7. using System.Runtime.Remoting.Lifetime;
  8. namespace Wrox.ProCSharp.Remoting
  9. {
  10. public class HelloClient
  11. {
  12. public static void Main(string[] args)
  13. {
  14. RemotingConfiguration.Configure("HelloClient.exe.config");
  15. Hello obj = new Hello();
  16. if (obj == null)
  17. {
  18. Console.WriteLine("could not locate server");
  19. return;
  20. }
  21. for (int i=0; i < 5; i++)
  22. {
  23. Console.WriteLine(obj.Greeting("Christian"));
  24. }
  25. }
  26. }
  27. }