* AutomationProxyAttribute.cs
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / ComRegisterFunctionAttribute.cs
1 //
2 // System.Runtime.InteropServices.ComRegisterFunctionAttribute.cs
3 //
4 // Name: Duncan Mak  (duncan@ximian.com)
5 //
6 // (C) Ximian, Inc.
7 //
8
9 namespace System.Runtime.InteropServices {
10
11         [AttributeUsage (AttributeTargets.Method, Inherited=false)]
12         public sealed class ComRegisterFunctionAttribute : Attribute
13         {
14                 public ComRegisterFunctionAttribute ()
15                 {
16                 }
17         }
18 }