using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Diagnostics
{
/// Provides display instructions for the debugger.
// Token: 0x0200061D RID: 1565
[Token(Token = "0x200061D")]
[ComVisible(true)]
public enum DebuggerBrowsableState
{
/// Never show the element.
// Token: 0x04001A60 RID: 6752
[Token(Token = "0x4001A60")]
Never,
/// Show the element as collapsed.
// Token: 0x04001A61 RID: 6753
[Token(Token = "0x4001A61")]
Collapsed = 2,
/// Do not display the root element; display the child elements if the element is a collection or array of items.
// Token: 0x04001A62 RID: 6754
[Token(Token = "0x4001A62")]
RootHidden
}
}