<?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>Comment Feed for SteveRichter</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/SteveRichter/Comments/RSS"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>SteveRichter</title>
		<link></link>
	</image>
	<description></description>
	<link></link>
	<language>en</language>
	<pubDate>Wed, 22 May 2013 09:10:01 GMT</pubDate>
	<lastBuildDate>Wed, 22 May 2013 09:10:01 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Channel 9 turns 9!</title>
		<description>
			<![CDATA[<p>Congrats.&nbsp; But, just my opinion, C9 was much better back in the day. Anders was always great. Scoble and Rory were fun and seemed honest. Microsoft needs a public advocate, someone on the inside who speaks to the legitimate complaints of users and programmers. C9 should have someone challenging the Bing team on why their search engine is not growing in popularity, for example.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/C9Team/Channel-9-turns-9#c634991354708406770</link>
		<pubDate>Sun, 17 Mar 2013 16:44:30 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/C9Team/Channel-9-turns-9#c634991354708406770</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: C++ and Beyond 2012: Herb Sutter - You don&#39;t know [blank] and [blank]</title>
		<description>
			<![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Comment Permalink" href="/posts/C-and-Beyond-2012-Herb-Sutter-You-dont-know-blank-and-blank#c634926605079590048">20 hours&nbsp;ago</a></p><p>Steve, the whole point of C&#43;&#43; is to give you the tools to make such a class.</p><p>&nbsp;</p></div></blockquote><p></p><p>but in practice Tianyu, you end up getting some inscrutable compile errors.</p><p>Find the error in this code.&nbsp; Note the bullshit compile error.</p><p></p><pre class="brush: text">  void Tester2( unique_ptr&lt;std::wstring&gt; pString )  {  }  void CallTester2( )  {    unique_ptr&lt;std::wstring&gt; pString ;    Tester2( pString ) ;  }</pre><p></p><p>&nbsp;</p><p>&nbsp;4&nbsp;IntelliSense: &quot;std::unique_ptr&lt;_Ty, _Dx&gt;::unique_ptr(const std::unique_ptr&lt;_Ty, _Dx&gt;::_Myt &amp;) [with _Ty=std::wstring, _Dx=std::default_delete&lt;std::wstring&gt;]&quot; (declared at line 1447 of &quot;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include\memory&quot;) is inaccessible&nbsp;c:\SkyDrive\democpp\Tester\Tester.cpp&nbsp;379&nbsp;14&nbsp;Tester<br>Error&nbsp;3&nbsp;error C2248: 'std::unique_ptr&lt;_Ty&gt;::unique_ptr' : cannot access private member declared in class 'std::unique_ptr&lt;_Ty&gt;'&nbsp;c:\skydrive\democpp\tester\tester.cpp&nbsp;382&nbsp;1&nbsp;Tester</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/posts/C-and-Beyond-2012-Herb-Sutter-You-dont-know-blank-and-blank#c634927338347774433</link>
		<pubDate>Wed, 02 Jan 2013 14:30:34 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/posts/C-and-Beyond-2012-Herb-Sutter-You-dont-know-blank-and-blank#c634927338347774433</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: C++ and Beyond 2012: Herb Sutter - You don&#39;t know [blank] and [blank]</title>
		<description>
			<![CDATA[<p>Why is const needed anyway?&nbsp; C# does not have the concept.</p><p>Another C&#43;&#43; request ...&nbsp; enum class.&nbsp; Have a built in ToString method or enable enum class to have member functions, or add extension methods to the language.&nbsp; The purpose being to enable enum specific code, like Parse and ToString, to be called using dot notation from an enum instance.</p><p>enum class Colors { red, white, blue } ;<br>Colors color = Colors::red ;<br>auto textColorName = color.ToString( )<br>auto anotherColor = Colors::Parse( textColorName ) ;</p><p>Bigger picture. Give me a native version of C#. Or enhance the struct handling capabilites of C#. ( C# cannot efficiently handle PIDLs used by windows shell. ) Microsoft to this day says that windows shell code written in C# is unsupported. A C# like native code language would be awesome.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/posts/C-and-Beyond-2012-Herb-Sutter-You-dont-know-blank-and-blank#c634926547474410577</link>
		<pubDate>Tue, 01 Jan 2013 16:32:27 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/posts/C-and-Beyond-2012-Herb-Sutter-You-dont-know-blank-and-blank#c634926547474410577</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: C++ and Beyond 2012: Herb Sutter - You don&#39;t know [blank] and [blank]</title>
		<description>
			<![CDATA[<p>does c&#43;&#43;11 provide yield return and extension methods as we know them from C#?&nbsp; Does it do away with header files?</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/posts/C-and-Beyond-2012-Herb-Sutter-You-dont-know-blank-and-blank#c634925673097656340</link>
		<pubDate>Mon, 31 Dec 2012 16:15:09 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/posts/C-and-Beyond-2012-Herb-Sutter-You-dont-know-blank-and-blank#c634925673097656340</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: C++ and Beyond 2012: Scott Meyers - Universal References in C++11</title>
		<description>
			<![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Comment Permalink" href="/Shows/Going&#43;Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634856796334368694">16 minutes&nbsp;ago</a>, <a href="/Niners/STL">STL</a> wrote</p><p>but it is <strong>awesome</strong> at tuples.</p><p></p></div></blockquote><p></p><p>neat. thanks!</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634856808456535745</link>
		<pubDate>Fri, 12 Oct 2012 23:20:45 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634856808456535745</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: C++ and Beyond 2012: Scott Meyers - Universal References in C++11</title>
		<description>
			<![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Comment Permalink" href="/Shows/Going&#43;Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634856668202930119">1 hour&nbsp;ago</a>, <a href="/Niners/bkuhns">bkuhns</a> wrote</p><p>*snip*</p><p>Watch Bjarne's presentation from Going Native 2012, &quot;C&#43;&#43;11 Style&quot;. He shows how strong abstractions can be built using C&#43;&#43;11 that are clean and modern.</p><p>&nbsp;</p></div></blockquote><p></p><p>Well, I doubt I will find a satisfactory way to organize my C&#43;&#43; code because I have to code in both .h and .cpp files. I like the way my C# code is organized with each class in a .cs file and those files are in folders organized along namespace lines. I like being able to return Tuples from C# methods and adding extension methods. Granted these are my little tics, but it still makes a lot of sense to me that the native language used by MSFT should be as similar to C# as possible and focused on doing what you need a native language to do - run with low overhead.</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634856757014443984</link>
		<pubDate>Fri, 12 Oct 2012 21:55:01 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634856757014443984</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: C++ and Beyond 2012: Scott Meyers - Universal References in C++11</title>
		<description>
			<![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Comment Permalink" href="/Shows/Going&#43;Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634855716016124931">22 hours&nbsp;ago</a>, <a href="/Niners/Charles">Charles</a> wrote</p><p>*snip*</p><p>Really? With C&#43;&#43;, you're given very sharp knives to cut through computational complexity. As such, you need to learn how to use them wisely (and effectively). When has this not been the case for C&#43;&#43;? Further, C&#43;&#43; is language that affords great efficiency and performance across the hardware spectrum and with high level modern programming&nbsp;abstractions. ...</p><p></p></div></blockquote><p></p><p>See, I thought we simply needed a language&nbsp;to write efficient native code. Kind of like C with modern programming constructs like namespaces, classes, interfaces, extension methods, tuples, lambdas, collections, ...&nbsp; To write large apps I will use C#.&nbsp; For energy efficient, quick starting standalone apps give me a native language with a familiar syntax.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634856530537885400</link>
		<pubDate>Fri, 12 Oct 2012 15:37:33 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634856530537885400</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: C++ and Beyond 2012: Scott Meyers - Universal References in C++11</title>
		<description>
			<![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Comment Permalink" href="/Shows/Going&#43;Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634855033541783112">2 hours&nbsp;ago</a>, <a href="/Niners/STL">STL</a> wrote</p><p>&nbsp;</p><p>&gt; Still do not understand why C&#43;&#43;, with all the additions being throw at it, is retaining the #include header file thing.</p><p>That's being worked on (&quot;modules&quot;) for a future C&#43;&#43; Standard.</p><p></p></div></blockquote><p></p><p>I am really not a complainer, but I wish MSFT would just forge ahead and do modules on their own. From my recent experience with C&#43;&#43; it is very difficult to organize your code when you have to split things between .h and .cpp files. Esp when I bring my C# practices to a C&#43;&#43; project. Filters are not a substitute for C# folders.</p><p>thanks for the explanations.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634855112157594069</link>
		<pubDate>Thu, 11 Oct 2012 00:13:35 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634855112157594069</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: C++ and Beyond 2012: Scott Meyers - Universal References in C++11</title>
		<description>
			<![CDATA[<p>Scott lost me almost as quickly as MSDN magazine does every time I try to read it. I have never seen &amp;&amp; in c&#43;&#43; code.&nbsp; I am not completely certain about rvalue and lvalue. The r and l stand for right and left side of the expression, right?&nbsp;&nbsp; Other than that I am lost.</p><p>Still do not understand why C&#43;&#43;, with all the additions being throw at it, is retaining the #include header file thing. That is the aspect of the language that to me makes it difficult to use and structure your code files.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634854806684165461</link>
		<pubDate>Wed, 10 Oct 2012 15:44:28 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/Cpp-and-Beyond-2012-Scott-Meyers-Universal-References-in-Cpp11#c634854806684165461</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: John Sheehan: Windows 8 Platform</title>
		<description>
			<![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Comment Permalink" href="/Blogs/Bytes&#43;by&#43;MSDN/Bytes-by-MSDN-Windows-8-Platform#c634840205095293619">1 day&nbsp;ago</a>, <a href="/Niners/Charles">Charles</a> wrote</p><p>... Thinking about them&nbsp;in the same way is therefore not meaningful. What would a &quot;windows explorer namespace extension&quot; mean in the modern shell? <br><br>C</p><p></p></div></blockquote><p></p><p>don't know. Does windows 8 have a windows explorer? Does it work the same as the win7 explorer, only written&nbsp; using WinRT?&nbsp; A namespace extension enables new nodes to be added to the windows explorer hierarchy tree. Only they are incredibly difficult to write because of very cryptic COM interfaces. And they are historically written with C&#43;&#43;, again a real hassle compared to C#. Was hoping that if the 1/2 million windows api's have been replaced with winRTclasses and methods? then windows explorer is easier to work with now.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/Bytes+by+MSDN/Bytes-by-MSDN-Windows-8-Platform#c634841290738745030</link>
		<pubDate>Tue, 25 Sep 2012 00:17:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/Bytes+by+MSDN/Bytes-by-MSDN-Windows-8-Platform#c634841290738745030</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: John Sheehan: Windows 8 Platform</title>
		<description>
			<![CDATA[<p>Has windows shell been replaced by a WinRT equivalent?&nbsp; Is there now a WinRT way of creating a windows explorer namespace extension?</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/Bytes+by+MSDN/Bytes-by-MSDN-Windows-8-Platform#c634839497626822300</link>
		<pubDate>Sat, 22 Sep 2012 22:29:22 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/Bytes+by+MSDN/Bytes-by-MSDN-Windows-8-Platform#c634839497626822300</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: Alexandrescu, Meyers, Sutter: On Static If, C++11 in 2012, Modern Libraries, and Metaprogramming</title>
		<description>
			<![CDATA[<p>Why so long to produce an XML library? Excuse me if I do not understand the context of the issue. Why would it take years&nbsp;to code the equivalent of LINQ to XML in C&#43;&#43;?</p><p>&nbsp;</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/Alexandrescu-Meyers-Sutter-On-Static-If-C11-in-2012-Modern-Libraries-and-Metaprogramming#c634811840960974249</link>
		<pubDate>Tue, 21 Aug 2012 22:14:56 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/Alexandrescu-Meyers-Sutter-On-Static-If-C11-in-2012-Modern-Libraries-and-Metaprogramming#c634811840960974249</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: Alexandrescu, Meyers, Sutter: On Static If, C++11 in 2012, Modern Libraries, and Metaprogramming</title>
		<description>
			<![CDATA[<p>Will the ^ syntax used in c&#43;&#43; WinRT apps be enabled for all windows apps? I assume the hat syntax encapsulates some sort of automatic implementation of smart pointers. It looks like a feature I would like to use.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/Alexandrescu-Meyers-Sutter-On-Static-If-C11-in-2012-Modern-Libraries-and-Metaprogramming#c634811623238882745</link>
		<pubDate>Tue, 21 Aug 2012 16:12:03 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/Alexandrescu-Meyers-Sutter-On-Static-If-C11-in-2012-Modern-Libraries-and-Metaprogramming#c634811623238882745</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: Alexandrescu, Meyers, Sutter: On Static If, C++11 in 2012, Modern Libraries, and Metaprogramming</title>
		<description>
			<![CDATA[<p>What about header files?&nbsp; Will they always be required? I suppose you could say the editor should just automatically generate the header, but then there is the requirement to include the header in the .cpp file. Anyway, having to duplicate the definition of a function in the .h and .cpp files really slows me down when coding C&#43;&#43;. It also impacts code organization. VC&#43;&#43; 2012 allows filters to organize code, but that is not as good as using folders in C#. In C# I have each class in its own source file, where the name of the source file is the name of the class. Then the source files are organized in a hierarchy of folders and sub folders. I try to do roughly the same in c&#43;&#43; projects, but class declarations are still consolidated in a single .h files. Which results in a single .h file and multiple .cpp files, which requires more organizational thought to assign meaningful file names, and makes it harder to find the file in solution explorer that I need to edit.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/Alexandrescu-Meyers-Sutter-On-Static-If-C11-in-2012-Modern-Libraries-and-Metaprogramming#c634811620001976684</link>
		<pubDate>Tue, 21 Aug 2012 16:06:40 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/Alexandrescu-Meyers-Sutter-On-Static-If-C11-in-2012-Modern-Libraries-and-Metaprogramming#c634811620001976684</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: Defrag Tools: #4 - Process Monitor - Examples</title>
		<description>
			<![CDATA[<p>Would be terrific if the SysInternals tools came with source code. Or at least if there were source code snippets in the SysInterals books that Mark publishes.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Defrag-Tools/Defrag-Tools-4-Process-Monitor#c634810913264431755</link>
		<pubDate>Mon, 20 Aug 2012 20:28:46 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Defrag-Tools/Defrag-Tools-4-Process-Monitor#c634810913264431755</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: Visual Studio Toolbox: Visual Studio 11 Beta with Jason Zander</title>
		<description>
			<![CDATA[<p>regarding VS packages and extensions, are there new extension points in VS11?</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Visual-Studio-Toolbox/Visual-Studio-Toolbox-Visual-Studio-11-Beta-with-Jason-Zander#c634662167056391939</link>
		<pubDate>Thu, 01 Mar 2012 16:38:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Visual-Studio-Toolbox/Visual-Studio-Toolbox-Visual-Studio-11-Beta-with-Jason-Zander#c634662167056391939</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: Defrag: So You Just Got a New PC</title>
		<description>
			<![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Comment Permalink" href="/Shows/The-Defrag-Show/Defrag-So-You-Just-Got-a-New-PC#c634613730122680079">5 hours&nbsp;ago</a>, <a href="/Niners/wkempf">wkempf</a> wrote</p><p>@<a href="/Shows/The-Defrag-Show/Defrag-So-You-Just-Got-a-New-PC#c634613092763261445">LarryLarsen</a>: I think you misunderstood me. I didn't say you shouldn't have to uninstall apps. I understand the need for OEMs to install this crapware. However, I shouldn't have to be an expert and spend significant effort to uninstall the apps. Add/remove programs should &quot;just work&quot;. Microsoft shouldn't provide the Windows logo for machines that install crapware that can't be easily removed this way.</p><p></p></div></blockquote><p></p><p>I agree with this completely.&nbsp; I was thinking during the broadcast that there sure are important ways that Microsoft could improve Windows. The tip that people reboot after each app is removed could be negated if Windows could better deactivate running applications.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/The-Defrag-Show/Defrag-So-You-Just-Got-a-New-PC#c634613967887607154</link>
		<pubDate>Thu, 05 Jan 2012 21:46:28 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/The-Defrag-Show/Defrag-So-You-Just-Got-a-New-PC#c634613967887607154</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: The Roslyn Project - Meet the Design Team</title>
		<description>
			<![CDATA[<p>I am interested in hearing more about how the data structures Anders was describing work.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/Charles/The-Roslyn-Project-Meet-the-Design-Team#c634572345475894291</link>
		<pubDate>Fri, 18 Nov 2011 17:35:47 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/Charles/The-Roslyn-Project-Meet-the-Design-Team#c634572345475894291</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: Channel Live at BUILD: Q&amp;A with Anders Hejlsberg</title>
		<description>
			<![CDATA[<p>I don't follow how having a feature in C# where&nbsp;an event is&nbsp;signalled or a method is called&nbsp;when a property is changed would tie the language to the windows platform.</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/Ch9Live/Channel-9-Live-at-BUILD/C9L201#c634533666854206056</link>
		<pubDate>Tue, 04 Oct 2011 23:11:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/Ch9Live/Channel-9-Live-at-BUILD/C9L201#c634533666854206056</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: Channel Live at BUILD: Q&amp;A with Anders Hejlsberg</title>
		<description>
			<![CDATA[<p>It would help me if the language had a &quot;factory&quot; facility. Where you have a hierarchical structure of abstract base classes and derived classes. I write a&nbsp;static method in each derived class that is used to determine if the derived class is the one to be newed up from the input. And then a 2nd static method&nbsp;that actually news up the object.&nbsp; The hassle comes in having to write the code that iterates thru the collection of classes, calling the static &quot;Is this the class to new up&quot; method. And then calling the static &quot;create yourself&quot; method.&nbsp; I use reflection&nbsp; for this. Which is OK. But a language&nbsp;feature would be nice.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/Ch9Live/Channel-9-Live-at-BUILD/C9L201#c634533664099857046</link>
		<pubDate>Tue, 04 Oct 2011 23:06:49 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/Ch9Live/Channel-9-Live-at-BUILD/C9L201#c634533664099857046</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: Silverlight TV 80: Reactive Extensions</title>
		<description>
			<![CDATA[ <p>Will we ever be able to do away with the UI thread? Or at least change C# to simplify the work of marshalling onto the UI thread.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-80-Reactive-Extensions#c634482404960000000</link>
		<pubDate>Sat, 06 Aug 2011 15:14:56 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/SilverlightTV/Silverlight-TV-80-Reactive-Extensions#c634482404960000000</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: Episode 53 - Scott Guthrie Discusses Windows Azure</title>
		<description>
			<![CDATA[ <p>I am so worried that azure is going to stifle innovation by Microsoft in the windows OS space. A network of PCs and servers should have more and more of a cloud like configuration and look and feel. Networks of PC should be able to connect to each other over the web with minimal&nbsp;setup effort. A windows PC should be able to connect to the network/cloud and, starting from a stub of an OS, load and access all the apps available from the cloud/network. SQL server databases should be easy to&nbsp;connect to in the network/cloud. There&nbsp;should be&nbsp;automatic replication of databases and file shares. I worry that Microsoft will not allow Windows to compete with Azure&nbsp;in its desire to maximize revenue from pay per use Azure.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Cloud+Cover/Episode-53-Scott-Guthrie-Discusses-Windows-Azure#c634475741070000000</link>
		<pubDate>Fri, 29 Jul 2011 22:08:27 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Cloud+Cover/Episode-53-Scott-Guthrie-Discusses-Windows-Azure#c634475741070000000</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: Microsoft Board Member Charles H. Noski</title>
		<description>
			<![CDATA[ <p>I think the BOD should also be reponsible for reviewing why Microsoft has fallen so far behind Apple, Facebook and Google in the last 5 years.</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/posts/Microsoft-Board-Member-Charles-H-Noski#c634462567150000000</link>
		<pubDate>Thu, 14 Jul 2011 16:11:55 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/posts/Microsoft-Board-Member-Charles-H-Noski#c634462567150000000</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: Anders Hejlsberg: Questions and Answers</title>
		<description>
			<![CDATA[ <p>I was not clear on my dependancy property question. I would find it useful if I could define a method be called whenever a property in an object is changed. Expanding that feature to its logical conclusion, signal an &quot;event handler&quot; whenever a method of an object is called.</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/Anders-Hejlsberg-Questions-and-Answers#c634403799140000000</link>
		<pubDate>Sat, 07 May 2011 15:45:14 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/Anders-Hejlsberg-Questions-and-Answers#c634403799140000000</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
	<item>
		<title>Re: ECMAScript 5: The New Parts</title>
		<description>
			<![CDATA[ <p>some things I don't understand about Javascript.</p><p>Why no interfaces? Why does WPF and sivlerlight not have javascript? Why is javascript not a .NET language?</p><p>&nbsp;</p><p>posted by SteveRichter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/MIX/MIX11/EXT13#c634394420570000000</link>
		<pubDate>Tue, 26 Apr 2011 19:14:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/MIX/MIX11/EXT13#c634394420570000000</guid>
		<dc:creator>SteveRichter</dc:creator>
	</item>
</channel>
</rss>