- //
- // System.Runtime.InteropServices.ICustomFactory.cs
- //
- // Author:
- // Kevin Winchester ([email protected])
- //
- // (C) 2002 Kevin Winchester
- //
- namespace System.Runtime.InteropServices {
- public interface ICustomFactory {
- MarshalByRefObject CreateInstance (Type serverType);
- }
- }
|