using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Diagnostics { /// Provides display instructions for the debugger. // Token: 0x0200063E RID: 1598 [Token(Token = "0x200063E")] [ComVisible(true)] public enum DebuggerBrowsableState { /// Never show the element. // Token: 0x04001B23 RID: 6947 [Token(Token = "0x4001B23")] Never, /// Show the element as collapsed. // Token: 0x04001B24 RID: 6948 [Token(Token = "0x4001B24")] Collapsed = 2, /// Do not display the root element; display the child elements if the element is a collection or array of items. // Token: 0x04001B25 RID: 6949 [Token(Token = "0x4001B25")] RootHidden } }