* DebuggerHiddenAttribute.cs
[mono.git] / mcs / class / corlib / System.Diagnostics / DebuggerStepThroughAttribute.cs
1 //
2 // System.Diagnostics.DebuggerStepThroughAttribute.cs
3 //
4 // Author: Duncan Mak  (duncan@ximian.com)
5 //
6 // (C) Ximian, Inc. http://www.ximian.com
7 //
8
9 using System;
10
11 namespace System.Diagnostics
12 {
13         [AttributeUsage (AttributeTargets.Class | AttributeTargets.Struct |
14                          AttributeTargets.Constructor |
15                          AttributeTargets.Method, Inherited=false)]
16         [Serializable]
17         public sealed class DebuggerStepThroughAttribute : Attribute
18         {
19                 public DebuggerStepThroughAttribute ()
20                         : base ()
21                         {
22                         }
23         }
24 }