| 1234567891011121314151617181920 |
- //
- // System.Runtime.InteropServices.ComUnregisterFunctionAttribute.cs
- //
- // Name: Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc.
- //
- using System;
- namespace System.Runtime.InteropServices {
- [AttributeUsage (AttributeTargets.Method)]
- public sealed class ComUnregisterFunctionAttribute : Attribute
- {
- public ComUnregisterFunctionAttribute ()
- {
- }
- }
- }
|