Files
Apr2020-Cpp2Il-Dump/mscorlib/System/Diagnostics/DebuggerBrowsableState.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

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: 0x0200061D RID: 1565
[Token(Token = "0x200061D")]
[ComVisible(true)]
public enum DebuggerBrowsableState
{
/// <summary>Never show the element.</summary>
// Token: 0x04001A60 RID: 6752
[Token(Token = "0x4001A60")]
Never,
/// <summary>Show the element as collapsed.</summary>
// Token: 0x04001A61 RID: 6753
[Token(Token = "0x4001A61")]
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: 0x04001A62 RID: 6754
[Token(Token = "0x4001A62")]
RootHidden
}
}