This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,26 @@
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
}
}