visual studio - Is there anything simple for debugger visualizers in C# that's analogous to editing autoexp.dat for C++? -
i have class has few simple members i'm looking expose debugger in visual studio 2010. want glance on list of these types , avoid drilling , expanding of variable's value tree. i'm hoping there's quick go analogous editing autoexp.dat in c++.
override tostring()
objects, or use debuggerdisplay (thanks @gdir).
if c# object has overridden tostring(), debugger call override , show result instead of standard {}. thus, if have overridden tostring(), not have use debuggerdisplay. if use both, debuggerdisplay attribute takes precedence on tostring() override.
Comments
Post a Comment