Files
Dec2017-Script-Dump/mscorlib/System/Diagnostics/DebuggerHiddenAttribute.cs
T
2026-06-04 11:42:34 +02:00

16 lines
469 B
C#

using System;
using System.Runtime.InteropServices;
namespace System.Diagnostics
{
/// <summary>Hides the code from the debugger. This class cannot be inherited.</summary>
/// <filterpriority>1</filterpriority>
// Token: 0x02000054 RID: 84
[AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property, Inherited = false)]
[ComVisible(true)]
[Serializable]
public sealed class DebuggerHiddenAttribute : Attribute
{
}
}