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

DebuggerDisplayAttribute() public method

public DebuggerDisplayAttribute ( string value ) : System
value string
return System
        public DebuggerDisplayAttribute(string value)
        {
            if( value == null ) {
                this.value = "";
            }
            else {
                this.value = value;
            }
            name = "";
            type = "";
        }   
DebuggerDisplayAttribute