Inspecting Object Details with Debugger Visualizers

Debugger visualizers are built-in tools that enable viewing information on objects, controls, members, and variables (generally complex data) in a particular format. For example, if you place a breakpoint on the following line of code of the sample project

Dim result As Boolean = Test(lineRead)

you can then open the Locals window and select the lineRead variable. In the Value column, notice the small magnifying glass you can click. From there, you can choose how you want to visualize information on the lineRead variable, such as Text format, XML format, and HTML format. Of course, trying to view the content of plain text as XML content does not provide any benefits, ...

Get Visual Basic 2015 Unleashed now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.