In System.IO:
[mono.git] / mcs / class / corlib / System.Diagnostics / DebuggerHiddenAttribute.cs
index d48366c5fd94b4fb33b73f50474c487a2acc48c0..9b5718bd5c53a1857df77d4e8a17cff1736d7908 100644 (file)
 
 using System;
 
+#if NET_2_0
+using System.Runtime.InteropServices;
+#endif
+
 namespace System.Diagnostics
 {
        [AttributeUsage (AttributeTargets.Constructor |
                         AttributeTargets.Method | AttributeTargets.Property,
                         Inherited=false)]
        [Serializable]
+#if NET_2_0
+       [ComVisible (true)]
+#endif
        public sealed class DebuggerHiddenAttribute : Attribute
        {
                public DebuggerHiddenAttribute ()