ServerLib.cs
上传用户:jasonxu888
上传日期:2007-03-28
资源大小:4316k
文件大小:0k
源码类别:

.net编程

开发平台:

C#

  1. using System;
  2. using System.Runtime.Remoting.Lifetime;
  3. using System.Runtime.Remoting;
  4. namespace Server
  5. {
  6. public class SomeCAO: MarshalByRefObject
  7. {
  8. public SomeCAO() 
  9. {
  10. Console.WriteLine("Creating Version 1.0.1.1 CAO");
  11. }
  12. public void doSomething() 
  13. {
  14. Console.WriteLine("Calling Version 1.0.1.1 CAO");
  15. }
  16. }
  17. }