Questions tagged [debuggervisualizer]

Visualizers are components of the IDE debugger user interface that displays a variable or object in a manner that is appropriate to its data type.

Visualizers are components of the IDE debugger user interface. A visualizer creates a dialog box or another interface to display a variable or object in a manner that is appropriate to its data type. For example, an HTML visualizer interprets an HTML string and displays the result as it would appear in a browser window; a bitmap visualizer interprets a bitmap structure and displays the graphic it represents.

168 questions
6
votes
2 answers

Visual Studio Visualizer for IEnumerable

TL;DR Does anyone know how to write a Debug Visualizer for Visual Studio 2012, in C#, so I can visualize IEnumerable, string[] or similar objects? More Info Visual Studio Debug Visualizer are great, and I use some popular ones (Mole)…
RoelF
  • 7,483
  • 5
  • 44
  • 67
6
votes
4 answers

Which (third-party) debug visualizers for Visual Studio 2005/2008 do you use?

I guess this topic is often overseen, but is rather useful when debugging your code. Just today I have stumbled across this simple yet effective visualizer that visualizes images (it's on a german blog, but I guess the code content is…
Grimtron
  • 6,803
  • 3
  • 23
  • 28
5
votes
1 answer

How do I obtain a reference to the object or its data from my external viewer debugger visualizer?

I am trying to write a debugger visualizer for a TJSONObject or a TJSONValue. I have most of the visualizer working nicely. The problem I am having is getting a reference to the TJSONObject, or at least to the tostring() value of the…
Cary Jensen
  • 3,751
  • 3
  • 32
  • 55
5
votes
3 answers

Why do some properties go out of scope in the watch list, while others do not?

First of all, sorry for the lengthy code example, but I believe it's needed to illustrate my problem. As a debugging help I often introduce a "DebugString"-method on my objects, which returns a concise object summary. But sometimes my objects are…
Svein Bringsli
  • 5,640
  • 7
  • 41
  • 73
5
votes
2 answers

Debugger visualizer for any ICollection and ICollection types

I created form with grid to visualize any collection (ICollection, ICollection) object. After that I created debugger visualizer class (inherits from Microsoft.VisualStudio.DebuggerVisualizers.DialogDebuggerVisualizer). The visualizer is…
TcKs
  • 25,849
  • 11
  • 66
  • 104
5
votes
1 answer

ObservableCollection visualizer - does such a thing exist?

I am finding myself working with ObservableCollection quite a bit. I've looked around, but I can't seem to find an ObservableCollection Debug Visualizer. Does such a thing exist?
AngryHacker
  • 59,598
  • 102
  • 325
  • 594
5
votes
0 answers

How can I intercept function return values in a Delphi Debugger Visualizer?

I have a working debugger visualizer that helps visualize variables of type TIntTime. TIntTime = type integer; The visualizer replaces a number of seconds since midnight with a time string HH:MM:SS. This works fine on variables of type TIntTime…
Jan Lauridsen
  • 586
  • 4
  • 9
5
votes
2 answers

Visual Studio 2015 debug visualizer changes

I am trying to use EnumerableDebugVisualizer and List Visualizer unfortunately none of them has a build for Visual Studio 2015. I tried using the DLLs provided which are for VS 2013 and VS 2010 and both of them error with the following message type…
5
votes
0 answers

VISUAL STUDIO 2010 DataSet Visualizer issue Cannot evaluate expression

I am using VS-10. I was debugging my code the DataSet Visualizer in Debug mode stopped working and I am getting the below error. IMPORTANT : If I remove Test function call it work correctly. Asp.Net c# web site project in debug mode. %temp%…
stackCoder
  • 205
  • 1
  • 2
  • 13
5
votes
2 answers

How does the Visual Studio debugger decide which values can be viewed with the Text/XML/HTML Visualizer?

I noticed that when I view variables of certain types, such as XElement, in the Watch window in Visual Studio, if I click on the Debug Visualizers magnifying glass, the same visualizers that apply on strings (Text, XML, HTML) appear. I haven't seen…
Omer Raviv
  • 11,409
  • 5
  • 43
  • 82
4
votes
1 answer

DataSetVisualizer & Remote Debugging in Visual Studio

We use Lab Manager to test on multiple platforms and do remote debugging by creating a Windows account with the same name and password on both the local dev box and the VM in Lab Manager (causes the VS debugger to think that the same account is…
UI Guy
4
votes
1 answer

Xcode 4.1 custom DataFormatter bundle

I'm trying to make a custom Data Formatter bundle to allow me to print things like STL containers more prettily, etc. I've followed the instructions online as well as I can, however I can't seem to get any bundle code to run. All I can do is get…
staticfloat
  • 6,752
  • 4
  • 37
  • 51
4
votes
1 answer

Visualizer for WPF elements

Trying to create visualizers for some WPF elements including DrawingImage and UIElement etc. While creating a visualizer was trivial, my visualizers always throw exception that the target object types (DrawingImage and UIElement that is) are not…
dotNET
  • 33,414
  • 24
  • 162
  • 251
4
votes
1 answer

Howto create (VC14) debug visualiser for string_view?

I’m using boost::string_view. (www.boost.org/doc/libs/1_61_0/boost/utility/string_view.hpp) Its got a const char* ptr_ and a unsigned int len_ data member. When debugging its cumbersome, as the default visualiser will show the char ptr_ with more…
petke
  • 1,345
  • 10
  • 25
4
votes
4 answers

Mole for VS 2010?

Does anyone know about Karl Shifflett's Mole for VS 2010?
Shimmy Weitzhandler
  • 101,809
  • 122
  • 424
  • 632
1 2
3
11 12