<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bob On Development &#187; .NET Framework</title>
	<atom:link href="http://bobondevelopment.com/category/net-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://bobondevelopment.com</link>
	<description>Musings on the craft and business of software development</description>
	<lastBuildDate>Fri, 09 Apr 2010 20:32:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How Not To Remove Multiple Spaces From Strings</title>
		<link>http://bobondevelopment.com/2008/07/26/how-not-to-remove-multiple-spaces-from-strings/</link>
		<comments>http://bobondevelopment.com/2008/07/26/how-not-to-remove-multiple-spaces-from-strings/#comments</comments>
		<pubDate>Sun, 27 Jul 2008 06:03:25 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[.NET Framework]]></category>

		<guid isPermaLink="false">http://bobondevelopment.com/?p=125</guid>
		<description><![CDATA[You think you're removing all possible cases of multiple spaces ... but you're not.]]></description>
		<wfw:commentRss>http://bobondevelopment.com/2008/07/26/how-not-to-remove-multiple-spaces-from-strings/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Case-Insensitive Regex Patterns in .NET</title>
		<link>http://bobondevelopment.com/2008/06/28/case-insensitive-regex-patterns-in-net/</link>
		<comments>http://bobondevelopment.com/2008/06/28/case-insensitive-regex-patterns-in-net/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 03:43:14 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[.NET Framework]]></category>

		<guid isPermaLink="false">http://bobondevelopment.com/?p=124</guid>
		<description><![CDATA[For some reason, I haven&#8217;t had to do this in a long time, so had to look it up.
There are three options for doing case-insensitive regular expressions in .NET.
The first is to use the RegexOptions enumeration to specify case-insensitive behavior:
Regex.IsMatch("Fubar","^fubar",RegexOptions.IgnoreCase)
The equivalent option is to put (?i) at the start of the expression.  This is [...]]]></description>
		<wfw:commentRss>http://bobondevelopment.com/2008/06/28/case-insensitive-regex-patterns-in-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Microsoft Stretching Its Abstractions Too Far?</title>
		<link>http://bobondevelopment.com/2007/09/27/is-microsoft-stretching-its-abstractions-too-far/</link>
		<comments>http://bobondevelopment.com/2007/09/27/is-microsoft-stretching-its-abstractions-too-far/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 01:30:14 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://bobondevelopment.com/2007/09/27/is-microsoft-stretching-its-abstractions-too-far/</guid>
		<description><![CDATA[Microsoft is dreaming big for future .NET developer toolsets.  Maybe too big.]]></description>
		<wfw:commentRss>http://bobondevelopment.com/2007/09/27/is-microsoft-stretching-its-abstractions-too-far/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An SqlParameter Handling Bug in ADO.NET 2.0</title>
		<link>http://bobondevelopment.com/2007/09/22/an-sqlparameter-handling-bug-in-adonet-20/</link>
		<comments>http://bobondevelopment.com/2007/09/22/an-sqlparameter-handling-bug-in-adonet-20/#comments</comments>
		<pubDate>Sun, 23 Sep 2007 01:17:16 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[.NET Framework]]></category>

		<guid isPermaLink="false">http://bobondevelopment.com/2007/09/22/an-sqlparameter-handling-bug-in-adonet-20/</guid>
		<description><![CDATA[Wherein we meet the SqlParameterCollection that would not die.]]></description>
		<wfw:commentRss>http://bobondevelopment.com/2007/09/22/an-sqlparameter-handling-bug-in-adonet-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exposing a .NET 2.0 Class Via COM: A Case Study</title>
		<link>http://bobondevelopment.com/2007/09/11/exposing-a-net-20-class-via-com-a-case-study/</link>
		<comments>http://bobondevelopment.com/2007/09/11/exposing-a-net-20-class-via-com-a-case-study/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 04:06:28 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[.NET Framework]]></category>

		<guid isPermaLink="false">http://bobondevelopment.com/2007/09/11/exposing-a-net-20-class-via-com-a-case-study/</guid>
		<description><![CDATA[I needed to access a .NET 2.0 class method from a COM application &#8212; something I don&#8217;t have an every day need for.
Like a lot of things, it seems simple enough on the surface, but the devil is in the details.  This rather lengthy post illustrates a typical forensic investigation for this kind of [...]]]></description>
		<wfw:commentRss>http://bobondevelopment.com/2007/09/11/exposing-a-net-20-class-via-com-a-case-study/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Stop it!  Stop Writing Unhelpful Help!</title>
		<link>http://bobondevelopment.com/2007/07/16/stop-it-stop-writing-unhelpful-help/</link>
		<comments>http://bobondevelopment.com/2007/07/16/stop-it-stop-writing-unhelpful-help/#comments</comments>
		<pubDate>Mon, 16 Jul 2007 20:58:18 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[.NET Framework]]></category>

		<guid isPermaLink="false">http://bobondevelopment.com/2007/07/16/stop-it-stop-writing-unhelpful-help/</guid>
		<description><![CDATA[You there!  Quit writing useless help topics!]]></description>
		<wfw:commentRss>http://bobondevelopment.com/2007/07/16/stop-it-stop-writing-unhelpful-help/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Three Ways to Clear a StringBuilder</title>
		<link>http://bobondevelopment.com/2007/06/11/three-ways-to-clear-a-stringbuilder/</link>
		<comments>http://bobondevelopment.com/2007/06/11/three-ways-to-clear-a-stringbuilder/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 12:58:24 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://bobondevelopment.com/2007/06/11/three-ways-to-clear-a-stringbuilder/</guid>
		<description><![CDATA[Three ways to clear a StringBuilder's buffer for re-use.  One is much more efficient than the others.]]></description>
		<wfw:commentRss>http://bobondevelopment.com/2007/06/11/three-ways-to-clear-a-stringbuilder/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Speed Up String Processing with StringComparison.Ordinal</title>
		<link>http://bobondevelopment.com/2007/06/03/speed-up-string-processing-with-stringcomparisonordinal/</link>
		<comments>http://bobondevelopment.com/2007/06/03/speed-up-string-processing-with-stringcomparisonordinal/#comments</comments>
		<pubDate>Sun, 03 Jun 2007 22:49:01 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://bobondevelopment.com/2007/06/03/speed-up-string-processing-with-stringcomparisonordinal/</guid>
		<description><![CDATA[When you have to do a lot of string comparisons, there are some clear and easy performance wins available in CLR 2.0 and later that you may have overlooked.]]></description>
		<wfw:commentRss>http://bobondevelopment.com/2007/06/03/speed-up-string-processing-with-stringcomparisonordinal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Date Math in .NET</title>
		<link>http://bobondevelopment.com/2007/05/21/date-math-in-net/</link>
		<comments>http://bobondevelopment.com/2007/05/21/date-math-in-net/#comments</comments>
		<pubDate>Mon, 21 May 2007 17:34:32 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://bobondevelopment.com/2007/05/21/date-math-in-net/</guid>
		<description><![CDATA[Sometimes when maintaining old code I stumble into situations where people are really going to too much effort to get something done. For whatever reason, this is particularly common with date math.]]></description>
		<wfw:commentRss>http://bobondevelopment.com/2007/05/21/date-math-in-net/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Optimize Memory Consumption Using String Interning</title>
		<link>http://bobondevelopment.com/2007/05/19/optimize-memory-consumption-using-string-interning/</link>
		<comments>http://bobondevelopment.com/2007/05/19/optimize-memory-consumption-using-string-interning/#comments</comments>
		<pubDate>Sat, 19 May 2007 22:39:53 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://bobondevelopment.com/2007/05/19/optimize-memory-consumption-using-string-interning/</guid>
		<description><![CDATA[A somewhat obscure but simple technique can save tons of memory on those infrequent occasions when you need to load a lot of string data.]]></description>
		<wfw:commentRss>http://bobondevelopment.com/2007/05/19/optimize-memory-consumption-using-string-interning/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
