ICustomAdapter.cs 282 B

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