<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for James McNellis | SeaPlusPlus</title>
	<atom:link href="http://seaplusplus.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://seaplusplus.com</link>
	<description></description>
	<lastBuildDate>Wed, 15 Aug 2012 17:06:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on &#8220;printf&#8221; debugging in Metro style apps by Rafael Garay</title>
		<link>http://seaplusplus.com/2012/06/25/printf-debugging-in-metro-style-apps/#comment-794</link>
		<dc:creator>Rafael Garay</dc:creator>
		<pubDate>Wed, 15 Aug 2012 17:06:13 +0000</pubDate>
		<guid isPermaLink="false">http://seaplusplus.com/?p=85#comment-794</guid>
		<description><![CDATA[If you want console like input or output in a Metro app, you can try using &lt;a href=&quot;http://www.moderncomponents.com/products/ConsoleClass/&quot; rel=&quot;nofollow&quot;&gt;Console Class for Metro Apps&lt;/a&gt; from Modern Components.
]]></description>
		<content:encoded><![CDATA[<p>If you want console like input or output in a Metro app, you can try using <a href="http://www.moderncomponents.com/products/ConsoleClass/" rel="nofollow">Console Class for Metro Apps</a> from Modern Components.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;printf&#8221; debugging in Metro style apps by Sridhar</title>
		<link>http://seaplusplus.com/2012/06/25/printf-debugging-in-metro-style-apps/#comment-700</link>
		<dc:creator>Sridhar</dc:creator>
		<pubDate>Wed, 01 Aug 2012 06:54:31 +0000</pubDate>
		<guid isPermaLink="false">http://seaplusplus.com/?p=85#comment-700</guid>
		<description><![CDATA[I do agree that is suffers from the same limitations like the others. It was a life saver when writing XAML + DX code though. There were situations when I just wanted to handle errors and exceptions and dump the messages to the console and WriteLine worked like a charm. :)
]]></description>
		<content:encoded><![CDATA[<p>I do agree that is suffers from the same limitations like the others. It was a life saver when writing XAML + DX code though. There were situations when I just wanted to handle errors and exceptions and dump the messages to the console and WriteLine worked like a charm. <img src='http://seaplusplus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;printf&#8221; debugging in Metro style apps by JamesMcNellis</title>
		<link>http://seaplusplus.com/2012/06/25/printf-debugging-in-metro-style-apps/#comment-685</link>
		<dc:creator>JamesMcNellis</dc:creator>
		<pubDate>Mon, 30 Jul 2012 17:58:40 +0000</pubDate>
		<guid isPermaLink="false">http://seaplusplus.com/?p=85#comment-685</guid>
		<description><![CDATA[&lt;p&gt;Thanks; I wasn&#039;t aware that was there!&lt;/p&gt;

&lt;p&gt;However, it still suffers from the problem that you need to separate the formatting and construction of the string to be printed from the act of writing it to the console (since Console::WriteLine takes a String^).  It&#039;s just not as easily usable as &lt;code&gt;std::wprintf&lt;/code&gt; and &lt;code&gt;std::wcout&lt;/code&gt;.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Thanks; I wasn&#8217;t aware that was there!</p>
<p>However, it still suffers from the problem that you need to separate the formatting and construction of the string to be printed from the act of writing it to the console (since Console::WriteLine takes a String^).  It&#8217;s just not as easily usable as <code>std::wprintf</code> and <code>std::wcout</code>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;printf&#8221; debugging in Metro style apps by Sridhar</title>
		<link>http://seaplusplus.com/2012/06/25/printf-debugging-in-metro-style-apps/#comment-682</link>
		<dc:creator>Sridhar</dc:creator>
		<pubDate>Mon, 30 Jul 2012 15:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://seaplusplus.com/?p=85#comment-682</guid>
		<description><![CDATA[If you are using C++ /CX, you can also use the Platform::Details::ConsoleWriteLine and output debug information to the console.
]]></description>
		<content:encoded><![CDATA[<p>If you are using C++ /CX, you can also use the Platform::Details::ConsoleWriteLine and output debug information to the console.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;printf&#8221; debugging in Metro style apps by Filip Skakun</title>
		<link>http://seaplusplus.com/2012/06/25/printf-debugging-in-metro-style-apps/#comment-222</link>
		<dc:creator>Filip Skakun</dc:creator>
		<pubDate>Tue, 26 Jun 2012 16:26:02 +0000</pubDate>
		<guid isPermaLink="false">http://seaplusplus.com/?p=85#comment-222</guid>
		<description><![CDATA[Seems like we share the love for printf debugging... :) http://blog.xyzzer.me/2012/06/05/debug-layer-in-direct3d-11-1-metro-style-applications/#comment-605
]]></description>
		<content:encoded><![CDATA[<p>Seems like we share the love for printf debugging&#8230; <img src='http://seaplusplus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://blog.xyzzer.me/2012/06/05/debug-layer-in-direct3d-11-1-metro-style-applications/#comment-605" rel="nofollow">http://blog.xyzzer.me/2012/06/05/debug-layer-in-direct3d-11-1-metro-style-applications/#comment-605</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CxxReflect:  Native Reflection for the Windows Runtime by Reflction in the native Windows Runtime &#124; Sridharpoduri&#039;s Blog</title>
		<link>http://seaplusplus.com/2012/04/26/cxxreflect-native-reflection-for-the-windows-runtime/#comment-24</link>
		<dc:creator>Reflction in the native Windows Runtime &#124; Sridharpoduri&#039;s Blog</dc:creator>
		<pubDate>Sun, 20 May 2012 10:37:23 +0000</pubDate>
		<guid isPermaLink="false">http://50.112.100.168/?p=32#comment-24</guid>
		<description><![CDATA[[...] over to his blog for more [...]
]]></description>
		<content:encoded><![CDATA[<p>[...] over to his blog for more [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Greetings! by Bruce</title>
		<link>http://seaplusplus.com/2012/04/26/greetings/#comment-3</link>
		<dc:creator>Bruce</dc:creator>
		<pubDate>Thu, 26 Apr 2012 18:38:34 +0000</pubDate>
		<guid isPermaLink="false">http://ec2-50-112-76-205.us-west-2.compute.amazonaws.com/wordpress/?p=17#comment-3</guid>
		<description><![CDATA[I look forward to seeing how much you can accomplish with this; congratulations!
]]></description>
		<content:encoded><![CDATA[<p>I look forward to seeing how much you can accomplish with this; congratulations!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Greetings! by Jeremy</title>
		<link>http://seaplusplus.com/2012/04/26/greetings/#comment-2</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Thu, 26 Apr 2012 03:55:11 +0000</pubDate>
		<guid isPermaLink="false">http://ec2-50-112-76-205.us-west-2.compute.amazonaws.com/wordpress/?p=17#comment-2</guid>
		<description><![CDATA[I love your site because you have complicated examples like this, and they push the boundaries of what C++ was meant to support.
]]></description>
		<content:encoded><![CDATA[<p>I love your site because you have complicated examples like this, and they push the boundaries of what C++ was meant to support.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
