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