| 12345678910111213141516171819202122232425 |
- //
- // System.Diagnostics.DebuggerHiddenAttribute.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 DebuggerHiddenAttribute : Attribute
- {
- public DebuggerHiddenAttribute ()
- : base ()
- {
- }
- }
- }
|