This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 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: 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
}
}