<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 Forums - Tech Off - Debugger visualization for VS2008/2012 that can view byte arrays like a hex editor with text column?</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Tech Off - Debugger visualization for VS2008/2012 that can view byte arrays like a hex editor with text column?</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Sat, 18 May 2013 07:47:03 GMT</pubDate>
	<lastBuildDate>Sat, 18 May 2013 07:47:03 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>2</c9:totalResults>
	<c9:pageCount>-2</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Tech Off - Debugger visualization for VS2008/2012 that can view byte arrays like a hex editor with text column?</title>
		<description><![CDATA[<p>When I break on a code and there's a byte[] myBuffer and I hover over the myBuffer, I get a long scrollable list of decimals or maybe hex.</p><p>I would like to have an option to instead view the array in similar view as the &quot;memory view&quot; with 16 hex columns and 16 ascii or unicode side by side.</p><p>This should come from hover &#43; right click&nbsp;on the myBuffer and selecting the option.</p><p>Also I'd like the following, just as a shortcut to view the memory, or is there a hot key to do this when you are hovering over a variable?</p><p>Middle click of the myBuffer, should open the memory view or similar, range bounded (not allowing to scroll to earlier than or after the myBuffer memory) to the myBuffer memory and with option to unbound the range, so memory prior and after the buffer can be scrolled into.</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/Debugger-visualization-for-VS20082012-that-can-view-byte-arrays-like-a-hex-editor-with-text-column/75e2ece6302e4d9ca84aa16200aa4439#75e2ece6302e4d9ca84aa16200aa4439</link>
		<pubDate>Mon, 11 Feb 2013 10:19:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/Debugger-visualization-for-VS20082012-that-can-view-byte-arrays-like-a-hex-editor-with-text-column/75e2ece6302e4d9ca84aa16200aa4439#75e2ece6302e4d9ca84aa16200aa4439</guid>
		<dc:creator>androidi</dc:creator>
		<slash:comments>2</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/androidi/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Debugger visualization for VS2008/2012 that can view byte arrays like a hex editor with text column?</title>
		<description><![CDATA[<p>Check out Debugger Visualizers, they can display objects in whatever way you want. For instance I made one that can display a buffer of floats or doubles as a zoomable/scrollable waveform inside a popup window. And you can make that window do whatever you can do in any winforms window, including display it just like the memory view does.</p><p>However Debugger Visualizers have some severe limitations, all to do with how badly they&nbsp;were designed:</p><ol><li><strong>You can only display types that are serializable.</strong> Array is not serializable, so you cannot have a Debugger Visualizer for byte[] for instance. Since my buffers of audio are either float[] or double[], I hit this same limitation. The way to work around this is to wrap the data in a serializable type. In my case, I made a Debugger Visualizer that can display List&lt;float&gt; and List&lt;double&gt;, both which are serializable. Then for instance if I have a float[] buffer called myBuffer, in the Watch window I type: new List&lt;float&gt;(myBuffer). This then allows the Debugger Visualizer to display the data. </li><li><strong>You cannot use Debugger Visualizers for Windows Phone Development.</strong> If you don't&nbsp;do Windows Phone development, then this is not an issue. Supposedly the reason is that Debugger Visualizers require a different security model than what&nbsp;Windows Phone provides. I say this is crap because the debugger itself can see <strong>all the same data</strong> that the Debugger Visualizer is&nbsp;trying to display. This comes down to a bad design. They should have made it so that whatever you can display in the Watch window should be available to the Debugger Visualizer as well. I fail to see why an API cannot be provided that can allow a Debugger Visualizer to display this exact same data that the debugger has access to, in whatever way it wants. Why does it&nbsp;<strong>have</strong> to be serializable? </li></ol>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/Debugger-visualization-for-VS20082012-that-can-view-byte-arrays-like-a-hex-editor-with-text-column/e8a15006a66a4cbc98e0a163011051e4#e8a15006a66a4cbc98e0a163011051e4</link>
		<pubDate>Tue, 12 Feb 2013 16:31:29 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/Debugger-visualization-for-VS20082012-that-can-view-byte-arrays-like-a-hex-editor-with-text-column/e8a15006a66a4cbc98e0a163011051e4#e8a15006a66a4cbc98e0a163011051e4</guid>
		<dc:creator>BitFlipper</dc:creator>
		<slash:comments>2</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/BitFlipper/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>