Tagged Questions
The debuggerdisplay tag has no wiki summary.
5
votes
1answer
318 views
C# debugging: [DebuggerDisplay] or ToString()?
There are two ways I know of to increase the usefulness of debugging information so you don't see {MyNamespace.MyProject.MyClass} in the debugger. These are the use of the DebuggerDisplay attribute ...
3
votes
4answers
325 views
DebuggerDisplay attribute does not work as expected!
I know that this attribute should work in C# and yet, in my case it does not.
I have a class with a lazy property Children. Accessing this property may have a side effect of roundtripping to the ...
2
votes
1answer
232 views
Using extension methods in [DebuggerDisplay] Attribute
The Attribute [DebuggerDisplay] (Using DebuggerDisplayAttribute) allows to define the display in the Debugger of VS 2010/2008. By modifying AutoExp.cs/.dll, I can even override the display of system ...
2
votes
1answer
157 views
Show DebuggerDisplay in PropertyGrid C#
I was wondering if it is possible to have the debugger display be the text for the class in the PropertyGrid?
I cant seem to find this answer anywhere.
Here is an example of what I have.
...
2
votes
2answers
128 views
Does there exists a method to render an object using DebuggerDisplayAttribute
I have a number of classes that are decorated with DebuggerDisplayAttribute.
I want to be able to add trace statements to Unit Tests that will display instances of these classes.
Does there exist a ...
1
vote
1answer
34 views
Chaining DebuggerDisplay on complex types
I have several classes defining the DebuggerDisplay attribute. I want to know if there is a way to define one DebuggerDisplay attribute based on another one. If I have the following classes:
...
1
vote
4answers
116 views
When to use DebuggerDisplayAttribute
What are some best practices around the DebuggerDisplayAttribute? What guides your decisions on when and how to apply the attribute to your code? For example..
Do you find DebuggerDisplayAttribute ...
1
vote
4answers
299 views
Example where [DebuggerDisplay(…)] attribute is useful?
I am looking for a good concrete example where it is clearly desirable to override ToString() with something, but to use a [DebuggerDisplay(...)] custom attribute to display something else in the ...
1
vote
3answers
172 views
When we must use DebuggerDisplay Attributes? What is the advantage of using this?
When we must use DebuggerDisplay Attributes? What is the advantage of using this?
1
vote
0answers
175 views
DataTable descendant with DebuggerDisplay attribute loses DebuggerVisualizer
I have a descendant of DataTable that has the DebuggerDisplay attribute defined. The default visualizer for DataTable is removed when I add the DebuggerDisplay attribute. If I remove the ...
0
votes
4answers
109 views
DebuggerDisplay - type in square brackets
class A
{
public Color ColorA { get; set; }
public Color ColorB { get; set; }
public A(Color colorA, Color colorB)
{
ColorA = colorA;
ColorB = colorB;
}
...