scripts
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace System.Diagnostics
|
||||
{
|
||||
/// <summary>Provides display instructions for the debugger.</summary>
|
||||
/// <filterpriority>2</filterpriority>
|
||||
// Token: 0x0200015E RID: 350
|
||||
[ComVisible(true)]
|
||||
public enum DebuggerBrowsableState
|
||||
{
|
||||
/// <summary>Never show the element.</summary>
|
||||
// Token: 0x04000444 RID: 1092
|
||||
Never,
|
||||
/// <summary>Show the element as collapsed.</summary>
|
||||
// Token: 0x04000445 RID: 1093
|
||||
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: 0x04000446 RID: 1094
|
||||
RootHidden
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user