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

DebuggerDisplayAttribute() public method

public DebuggerDisplayAttribute ( string value ) : System
value string
return System
		public DebuggerDisplayAttribute (string value) {
			if (value == null)
				value = string.Empty;

			this.value = value;
			this.type = string.Empty;
			this.name = string.Empty;
		}
DebuggerDisplayAttribute.DebuggerDisplayAttribute