| 1234567891011121314151617181920212223 |
- //
- // System.Diagnostics.DebuggerStepThroughAttribute.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // (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 ()
- {
- }
- }
- }
|