DebuggerDisplay on generic class

前端 未结 3 989
灰色年华
灰色年华 2021-02-19 06:27

I have a problem applying the DebuggerDisplay attribute on a generic class:

[DebuggerDisplay(\"--foo--\")]
class Foo
{
}

[DebuggerDisplay(\"Bar: {t         


        
相关标签:
3条回答
  • 2021-02-19 06:49

    The DebuggerDisplay attribute is not recursive. The {} inside the string essentially say evaluate this expression and display the result inline. The string for the inner result is calculated as if there was no DebuggerDisplay attribute in play for type or member. That is why you see {Foo} instead of --foo--.

    The reason for this is reliability. It is far too easy to have mutually recursive DebuggerDisplay attribute tags. This would cause a stack overflow or infinite loop to occur when evaluating an inner expression. Not recursively evaluating the DebuggerDisplay attribute prevents this infinite recursion (although it's still quite possible for the user to create it themselves inside a particular expression).

    One way you can control the way the inner expression is displayed is by overriding the .ToString() method. This will be evaluated when computing the display string for an inner expression.

    0 讨论(0)
  • 2021-02-19 06:57

    [Disclaimer: I'm affiliated with OzCode]

    You can use OzCode's Reveal feature which supports nested/recursive debug information.
    Once you define it for an instance it would be used automatically for all instances of that type.

    0 讨论(0)
  • 2021-02-19 07:04

    You can use [DebuggerDisplay("Bar<{typeof(T).Name}>,nq}")]//nq - no quotes.

    You also can use these practices: DebuggerDisplay attribute best practices

    0 讨论(0)
提交回复
热议问题