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,24 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the browsable state of a property or method from within an editor.</summary>
// Token: 0x02000122 RID: 290
[Token(Token = "0x2000122")]
public enum EditorBrowsableState
{
/// <summary>The property or method is always browsable from within an editor.</summary>
// Token: 0x040004DB RID: 1243
[Token(Token = "0x40004DB")]
Always,
/// <summary>The property or method is never browsable from within an editor.</summary>
// Token: 0x040004DC RID: 1244
[Token(Token = "0x40004DC")]
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: 0x040004DD RID: 1245
[Token(Token = "0x40004DD")]
Advanced
}
}