System.Diagnostics.DebuggerBrowsableAttribute.DebuggerBrowsableAttribute C# (CSharp) Method

DebuggerBrowsableAttribute() public method

public DebuggerBrowsableAttribute ( DebuggerBrowsableState state ) : System
state DebuggerBrowsableState
return System
        public DebuggerBrowsableAttribute(DebuggerBrowsableState state)
        {
            if( state < DebuggerBrowsableState.Never || state > DebuggerBrowsableState.RootHidden)
                throw new ArgumentOutOfRangeException("state");

            this.state = state;
        }
        public DebuggerBrowsableState State
DebuggerBrowsableAttribute