Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 1.42 KB

rule.adoc

File metadata and controls

51 lines (33 loc) · 1.42 KB

The DebuggerDisplayAttribute is used to determine how an object is displayed in the debugger window.

The DebuggerDisplayAttribute constructor takes a single mandatory argument: the string to be displayed in the value column for instances of the type. Any text within curly braces is evaluated as the name of a field or property, or any complex expression containing method calls and operators.

Naming a non-existent member between curly braces will result in a CS0103 error in the debug window when debugging objects. Although there is no impact on the production code, providing a wrong value can lead to difficulties when debugging the application.

This rule raises an issue when text specified between curly braces refers to members that don’t exist in the current context.

Noncompliant Code Example

[DebuggerDisplay("Name: {Name}")] // Noncompliant - Name doesn't exist in this context
public class Person
{
    public string FullName { get; private set; }
}

Compliant Solution

[DebuggerDisplay("Name: {FullName}")]
public class Person
{
    public string FullName { get; private set; }
}

Implementation Specification

(visible only on this page)


(visible only on this page)