DebuggerDisplayAttribute Constructor (String^)
Initializes a new instance of the DebuggerDisplayAttribute class.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
-
Type:
System::String^
The string to be displayed in the value column for instances of the type; an empty string ("") causes the value column to be hidden.
The value parameter can contain braces ({ and }). The text within a pair of braces is evaluated as the name of a field, property, or method. For example, the following C# code causes "Count = 4" to be displayed when the plus sign (+) is selected to expand the debugger display for an instance of MyTable.
[DebuggerDisplay("Count = {count}")]
class MyTable
{
public int count = 4;
}
The following code example causes the value of the Count property from the inherited Hashtable class to be displayed when the plus sign (+) is selected to expand the debugger display for an instance of MyHashtable. You must run the complete example, which is provided in the DebuggerDisplayAttribute class, to see the results.
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1