This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,19 @@
using System;
namespace System.ComponentModel
{
/// <summary>Specifies the browsable state of a property or method from within an editor.</summary>
// Token: 0x0200007B RID: 123
public enum EditorBrowsableState
{
/// <summary>The property or method is always browsable from within an editor.</summary>
// Token: 0x0400016F RID: 367
Always,
/// <summary>The property or method is never browsable from within an editor.</summary>
// Token: 0x04000170 RID: 368
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: 0x04000171 RID: 369
Advanced
}
}