23 lines
672 B
C#
23 lines
672 B
C#
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
|
|
}
|
|
}
|