ICustomFactory.cs 304 B

123456789101112131415
  1. //
  2. // System.Runtime.InteropServices.ICustomFactory.cs
  3. //
  4. // Author:
  5. // Kevin Winchester ([email protected])
  6. //
  7. // (C) 2002 Kevin Winchester
  8. //
  9. namespace System.Runtime.InteropServices {
  10. public interface ICustomFactory {
  11. MarshalByRefObject CreateInstance (Type serverType);
  12. }
  13. }