ComUnregisterFunctionAttribute.cs 368 B

1234567891011121314151617181920
  1. //
  2. // System.Runtime.InteropServices.ComUnregisterFunctionAttribute.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.Method)]
  11. public sealed class ComUnregisterFunctionAttribute : Attribute
  12. {
  13. public ComUnregisterFunctionAttribute ()
  14. {
  15. }
  16. }
  17. }