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