using System;
using System.Runtime.InteropServices;
namespace System.Diagnostics
{
/// Provides display instructions for the debugger.
/// 2
// Token: 0x0200015E RID: 350
[ComVisible(true)]
public enum DebuggerBrowsableState
{
/// Never show the element.
// Token: 0x04000444 RID: 1092
Never,
/// Show the element as collapsed.
// Token: 0x04000445 RID: 1093
Collapsed = 2,
/// Do not display the root element; display the child elements if the element is a collection or array of items.
// Token: 0x04000446 RID: 1094
RootHidden
}
}