Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DebuggerBrowsableAttribute.cs
Go to the documentation of this file.
1namespace System.Diagnostics;
2
3[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
5{
6 public DebuggerBrowsableState State { get; }
7
9 {
10 if (state < DebuggerBrowsableState.Never || state > DebuggerBrowsableState.RootHidden)
11 {
12 throw new ArgumentOutOfRangeException("state");
13 }
14 State = state;
15 }
16}