2010-03-27 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / class / corlib / System.Diagnostics / DebuggerNonUserCodeAttribute.cs
index 3f447d2efcdaad0a8ae9065fcdb23f56ea922786..38ce601db1321779a543b5501ee7510eecbea178 100644 (file)
@@ -29,8 +29,6 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 using System;
 using System.Runtime.InteropServices;
 
@@ -38,11 +36,10 @@ namespace System.Diagnostics
 {
        [AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Constructor|AttributeTargets.Method|AttributeTargets.Property, Inherited=false)] 
        [ComVisibleAttribute(true)] 
+       [Serializable]
        public sealed class DebuggerNonUserCodeAttribute : Attribute
        {
                public DebuggerNonUserCodeAttribute () {
                }
        }
 }
-
-#endif