2007-08-17 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.CompilerServices / CustomConstantAttribute.cs
index 5f3ad3ba15daff59b900b7948df16b8fe9e05f9d..6e523bc0e6ecef3a5c4d510a24d4b4ed7b3756c8 100644 (file)
 //
 
 using System;
+using System.Runtime.InteropServices;
 
 namespace System.Runtime.CompilerServices {
 
        [AttributeUsage (AttributeTargets.Parameter | AttributeTargets.Field, Inherited=false)] 
        [Serializable]
+#if NET_2_0
+       [ComVisible(true)]
+#endif
        public abstract class CustomConstantAttribute : Attribute
        {
                protected CustomConstantAttribute ()