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,24 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the browsable state of a property or method from within an editor.</summary>
// Token: 0x0200011E RID: 286
[Token(Token = "0x200011E")]
public enum EditorBrowsableState
{
/// <summary>The property or method is always browsable from within an editor.</summary>
// Token: 0x040004CE RID: 1230
[Token(Token = "0x40004CE")]
Always,
/// <summary>The property or method is never browsable from within an editor.</summary>
// Token: 0x040004CF RID: 1231
[Token(Token = "0x40004CF")]
Never,
/// <summary>The property or method is a feature that only advanced users should see. An editor can either show or hide such properties.</summary>
// Token: 0x040004D0 RID: 1232
[Token(Token = "0x40004D0")]
Advanced
}
}