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

.net编程

开发平台:

C#

  1. using System;
  2. namespace General
  3. {
  4. public interface IRemoteObject
  5. {
  6. void setValue(int newval);
  7. int getValue();
  8. }
  9. public interface IRemoteFactory
  10. {
  11. IRemoteObject getNewInstance();
  12. IRemoteObject getNewInstance(int initvalue);
  13. }
  14. }