General.cs
Upload User: jasonxu888
Upload Date: 2007-03-28
Package Size: 4316k
Code Size: 0k
Category:

.net

Development Platform:

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. }