<?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 C# 411</title>
	<atom:link href="http://www.csharp411.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.csharp411.com</link>
	<description>C# Information, Code, Tips and News</description>
	<lastBuildDate>Thu, 09 Sep 2010 19:15:17 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on .NET Assembly FAQ &#8211; Part 3 &#8211; Strong Names and Signing by Shawanda Albano</title>
		<link>http://www.csharp411.com/net-assembly-faq-part-3-strong-names-and-signing/comment-page-1/#comment-5663</link>
		<dc:creator>Shawanda Albano</dc:creator>
		<pubDate>Thu, 09 Sep 2010 19:15:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/net-assembly-faq-part-3-strong-names-and-signing/#comment-5663</guid>
		<description>Warum auch nicht jeder kann das so sehen wie er will. April nass und kalt, wächst das Korn wie ein Wald.</description>
		<content:encoded><![CDATA[<p>Warum auch nicht jeder kann das so sehen wie er will. April nass und kalt, wächst das Korn wie ein Wald.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# Search/Replace in Files by Nelson</title>
		<link>http://www.csharp411.com/searchreplace-in-files/comment-page-1/#comment-5662</link>
		<dc:creator>Nelson</dc:creator>
		<pubDate>Tue, 07 Sep 2010 15:50:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/searchreplace-in-files/#comment-5662</guid>
		<description>Very helpful Post.
Keep up the good work. :-)</description>
		<content:encoded><![CDATA[<p>Very helpful Post.<br />
Keep up the good work. <img src='http://www.csharp411.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remove Whitespace from C# Strings by Rick B</title>
		<link>http://www.csharp411.com/remove-whitespace-from-c-strings/comment-page-1/#comment-5661</link>
		<dc:creator>Rick B</dc:creator>
		<pubDate>Sat, 04 Sep 2010 17:12:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/remove-whitespace-from-c-strings/#comment-5661</guid>
		<description>public static class StringExtensions
    {
        public static string StripPunctuation(this string s)
        {
            var sb = new StringBuilder();
            foreach (char c in s)
            {
                if (!char.IsPunctuation(c))
                    sb.Append(c);
            }
            return sb.ToString();
        }

        public static string StripWhiteSpace(this string s)
        {
            var sb = new StringBuilder();
            foreach (char c in s)
            {
                if (!char.IsWhiteSpace(c))
                    sb.Append(c);
            }
            return sb.ToString();
        }
    }</description>
		<content:encoded><![CDATA[<p>public static class StringExtensions<br />
    {<br />
        public static string StripPunctuation(this string s)<br />
        {<br />
            var sb = new StringBuilder();<br />
            foreach (char c in s)<br />
            {<br />
                if (!char.IsPunctuation(c))<br />
                    sb.Append(c);<br />
            }<br />
            return sb.ToString();<br />
        }</p>
<p>        public static string StripWhiteSpace(this string s)<br />
        {<br />
            var sb = new StringBuilder();<br />
            foreach (char c in s)<br />
            {<br />
                if (!char.IsWhiteSpace(c))<br />
                    sb.Append(c);<br />
            }<br />
            return sb.ToString();<br />
        }<br />
    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Determine Windows Version and Edition with C# by John Guy</title>
		<link>http://www.csharp411.com/determine-windows-version-and-edition-with-c/comment-page-1/#comment-5660</link>
		<dc:creator>John Guy</dc:creator>
		<pubDate>Fri, 03 Sep 2010 18:56:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/determine-windows-version-and-edition-with-c/#comment-5660</guid>
		<description>It looks a little weird I do agree - but if I do not trap it like this the code returns Windows 2003 Server 64-bit. My XP SP2 64-bit reports the build as  5.2.3790.131072</description>
		<content:encoded><![CDATA[<p>It looks a little weird I do agree &#8211; but if I do not trap it like this the code returns Windows 2003 Server 64-bit. My XP SP2 64-bit reports the build as  5.2.3790.131072</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Determine Windows Version and Edition with C# by MZ</title>
		<link>http://www.csharp411.com/determine-windows-version-and-edition-with-c/comment-page-1/#comment-5659</link>
		<dc:creator>MZ</dc:creator>
		<pubDate>Fri, 03 Sep 2010 12:57:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/determine-windows-version-and-edition-with-c/#comment-5659</guid>
		<description>this doesn&#039;t work. it tells u the platform (64/32 bit) of code that runs the context. not the undelying os.</description>
		<content:encoded><![CDATA[<p>this doesn't work. it tells u the platform (64/32 bit) of code that runs the context. not the undelying os.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# WinForms Form Event Order by Thomas</title>
		<link>http://www.csharp411.com/c-winforms-form-event-order/comment-page-1/#comment-5658</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Wed, 01 Sep 2010 03:13:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/c-winforms-form-event-order/#comment-5658</guid>
		<description>Allows me to understand forms better.</description>
		<content:encoded><![CDATA[<p>Allows me to understand forms better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Best C# Web Sites by heli</title>
		<link>http://www.csharp411.com/best-c-web-sites/comment-page-1/#comment-5657</link>
		<dc:creator>heli</dc:creator>
		<pubDate>Tue, 31 Aug 2010 18:30:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/best-c-web-sites/#comment-5657</guid>
		<description>pls mail me best coading of c#</description>
		<content:encoded><![CDATA[<p>pls mail me best coading of c#</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on KeyedCollection: Dictionary for Values with Embedded Keys by Josh</title>
		<link>http://www.csharp411.com/keyedcollection-dictionary-for-values-with-embedded-keys/comment-page-1/#comment-5656</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Tue, 31 Aug 2010 03:57:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/keyedcollection-dictionary-for-values-with-embedded-keys/#comment-5656</guid>
		<description>This really helped., thanks</description>
		<content:encoded><![CDATA[<p>This really helped., thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NotifyIcon.ShowBalloonTip Issues by kokila</title>
		<link>http://www.csharp411.com/notifyiconshowballoontip-issues/comment-page-1/#comment-5655</link>
		<dc:creator>kokila</dc:creator>
		<pubDate>Mon, 30 Aug 2010 11:29:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/notifyiconshowballoontip-issues/#comment-5655</guid>
		<description>hi!
please provide the details about the showballoontip using c#.net</description>
		<content:encoded><![CDATA[<p>hi!<br />
please provide the details about the showballoontip using c#.net</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Disable the Ctrl+Tab Navigator Window in Visual Studio 2008 by Jamie Thomson</title>
		<link>http://www.csharp411.com/disable-the-ctrltab-navigator-window-in-visual-studio-2008/comment-page-1/#comment-5654</link>
		<dc:creator>Jamie Thomson</dc:creator>
		<pubDate>Mon, 30 Aug 2010 10:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/disable-the-ctrltab-navigator-window-in-visual-studio-2008/#comment-5654</guid>
		<description>I have found that having Speech Recognition turned on has the same affect as having Narrator turned on. So if you find CTRL+TAB is stuck for you, check to see if you have Speech Recognition turned on.

-Jamie</description>
		<content:encoded><![CDATA[<p>I have found that having Speech Recognition turned on has the same affect as having Narrator turned on. So if you find CTRL+TAB is stuck for you, check to see if you have Speech Recognition turned on.</p>
<p>-Jamie</p>
]]></content:encoded>
	</item>
</channel>
</rss>
