2002-01-23 Duncan Mak <duncan@ximian.com>
authorDuncan Mak <duncan@mono-cvs.ximian.com>
Thu, 24 Jan 2002 00:58:39 +0000 (00:58 -0000)
committerDuncan Mak <duncan@mono-cvs.ximian.com>
Thu, 24 Jan 2002 00:58:39 +0000 (00:58 -0000)
    * DebuggerStepThroughAttribute.cs:
    * DebuggerHiddenAttribte.cs: Add to CVS.

svn path=/trunk/mcs/; revision=2137

mcs/class/corlib/System.Diagnostics/ChangeLog
mcs/class/corlib/System.Diagnostics/DebuggerHiddenAttribute.cs [new file with mode: 0644]
mcs/class/corlib/System.Diagnostics/DebuggerStepThroughAttribute.cs [new file with mode: 0644]

index c37faef61e3544ad0a689c0a4ccdeeef99ce0116..e85a03170d3e516263b8e9fd95c97eb2e960e084 100644 (file)
@@ -1,3 +1,8 @@
+2002-01-23  Duncan Mak  <duncan@ximian.com>
+
+       * DebuggerStepThroughAttribute.cs:
+       * DebuggerHiddenAttribte.cs: Add to CVS.
+
 2002-01-04  Ravi Pratap <ravi@ximian.com>
 
        * StackFrame.cs : Use the MonoTODO attribute to mark
diff --git a/mcs/class/corlib/System.Diagnostics/DebuggerHiddenAttribute.cs b/mcs/class/corlib/System.Diagnostics/DebuggerHiddenAttribute.cs
new file mode 100644 (file)
index 0000000..b57db27
--- /dev/null
@@ -0,0 +1,25 @@
+//
+// System.Diagnostics.DebuggerHiddenAttribute.cs
+//
+// Author: Duncan Mak  (duncan@ximian.com)
+//
+// (C) Ximian, Inc. http://www.ximian.com
+//
+
+using System;
+
+namespace System.Diagnostics
+{
+       [AttributeUsage (AttributeTargets.Constructor |
+                        AttributeTargets.Method | AttributeTargets.Property)]
+       [Serializable]
+       public sealed class DebuggerHiddenAttribute : Attribute
+       {
+               public DebuggerHiddenAttribute ()
+                       : base ()
+                       {
+                       }
+       }
+}
+
+
diff --git a/mcs/class/corlib/System.Diagnostics/DebuggerStepThroughAttribute.cs b/mcs/class/corlib/System.Diagnostics/DebuggerStepThroughAttribute.cs
new file mode 100644 (file)
index 0000000..27d8189
--- /dev/null
@@ -0,0 +1,23 @@
+//
+// System.Diagnostics.DebuggerStepThroughAttribute.cs
+//
+// Author: Duncan Mak  (duncan@ximian.com)
+//
+// (C) Ximian, Inc. http://www.ximian.com
+//
+
+using System;
+
+namespace System.Diagnostics
+{
+       [AttributeUsage (AttributeTargets.Constructor |
+                        AttributeTargets.Method | AttributeTargets.Property)]
+       [Serializable]
+       public sealed class DebuggerStepThroughAttribute : Attribute
+       {
+               public DebuggerStepThroughAttribute ()
+                       : base ()
+                       {
+                       }
+       }
+}