ComImportAttribute.cs 364 B

123456789101112131415161718192021
  1. //
  2. // System.Runtime.InteropServices.ComImportAttribute.cs
  3. //
  4. // Name: Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc.
  7. //
  8. using System;
  9. namespace System.Runtime.InteropServices {
  10. [AttributeUsage (AttributeTargets.Class |
  11. AttributeTargets.Interface)]
  12. public sealed class ComImportAttribute : Attribute
  13. {
  14. public ComImportAttribute ()
  15. {
  16. }
  17. }
  18. }