16 lines
469 B
C#
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
|
|
{
|
|
}
|
|
}
|