ComRegisterFunctionAttribute.cs 347 B

123456789101112131415161718
  1. //
  2. // System.Runtime.InteropServices.ComRegisterFunctionAttribute.cs
  3. //
  4. // Name: Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc.
  7. //
  8. namespace System.Runtime.InteropServices {
  9. [AttributeUsage (AttributeTargets.Method)]
  10. public sealed class ComRegisterFunctionAttribute : Attribute
  11. {
  12. public ComRegisterFunctionAttribute ()
  13. {
  14. }
  15. }
  16. }