<?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>C# 411 &#187; Errors</title>
	<atom:link href="http://www.csharp411.com/category/errors/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.csharp411.com</link>
	<description>C# Development</description>
	<lastBuildDate>Sat, 19 Nov 2011 19:34:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Project is not selected for building in solution configuration</title>
		<link>http://www.csharp411.com/project-is-not-selected-for-building-in-solution-configuration/</link>
		<comments>http://www.csharp411.com/project-is-not-selected-for-building-in-solution-configuration/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 16:23:54 +0000</pubDate>
		<dc:creator>Timm</dc:creator>
				<category><![CDATA[Build Process]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.csharp411.com/project-is-not-selected-for-building-in-solution-configuration/</guid>
		<description><![CDATA[When building a Visual Studio project, you may encounter the following error: The project &#34;MyProject&#34; is not selected for building in solution configuration &#34;Debug&#124;Any CPU&#34;. This error occurs because the project has not been configured to build in your Visual Studio solution.&#160; The solution is simple: 1. In Visual Studio, click the Build &#62; Configuration [...]]]></description>
		<wfw:commentRss>http://www.csharp411.com/project-is-not-selected-for-building-in-solution-configuration/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Error CS0016: Could not write to output file</title>
		<link>http://www.csharp411.com/error-cs0016-could-not-write-to-output-file/</link>
		<comments>http://www.csharp411.com/error-cs0016-could-not-write-to-output-file/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 13:21:02 +0000</pubDate>
		<dc:creator>Timm</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://www.csharp411.com/error-cs0016-could-not-write-to-output-file/</guid>
		<description><![CDATA[If you attempt to run an ASP.NET application hosted on IIS running on Windows Home Basic or Premium, you may receive the following error: error CS0016: Could not write to output file &#8216;c:WindowsMicrosoft.NETFramework… More information &#62;]]></description>
		<wfw:commentRss>http://www.csharp411.com/error-cs0016-could-not-write-to-output-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solution file error MSB5014</title>
		<link>http://www.csharp411.com/solution-file-error-msb5014/</link>
		<comments>http://www.csharp411.com/solution-file-error-msb5014/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 19:00:06 +0000</pubDate>
		<dc:creator>Timm</dc:creator>
				<category><![CDATA[Errors]]></category>
		<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://www.csharp411.com/solution-file-error-msb5014/</guid>
		<description><![CDATA[The following error may occur when building a Visual Studio solution with the MSBuild program: Solution file error MSB5014: File format version is not recognized.&#160; MSBuild can only read solution files between versions 7.0 and 9.0, inclusive. This error may occur when compiling a solution for Visual 2008 or 2010 with the MSBuild program that [...]]]></description>
		<wfw:commentRss>http://www.csharp411.com/solution-file-error-msb5014/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ComboBox Exception: “Too many items in the combo box”</title>
		<link>http://www.csharp411.com/combobox-exception-too-many-items-in-the-combo-box/</link>
		<comments>http://www.csharp411.com/combobox-exception-too-many-items-in-the-combo-box/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 00:36:18 +0000</pubDate>
		<dc:creator>Timm</dc:creator>
				<category><![CDATA[Controls]]></category>
		<category><![CDATA[Errors]]></category>

		<guid isPermaLink="false">http://www.csharp411.com/combobox-exception-too-many-items-in-the-combo-box/</guid>
		<description><![CDATA[The .NET ComboBox may throw a cryptic OutOfMemoryException with the following message: Too many items in the combo box. This poorly-worded exception results when you Add an object to the ComboBox whose ToString() method returns a null or empty string.&#160; To fix this error, make sure that for every object that you add to the [...]]]></description>
		<wfw:commentRss>http://www.csharp411.com/combobox-exception-too-many-items-in-the-combo-box/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Exceptions are for Exceptions</title>
		<link>http://www.csharp411.com/exceptions-are-for-exceptions/</link>
		<comments>http://www.csharp411.com/exceptions-are-for-exceptions/#comments</comments>
		<pubDate>Fri, 29 May 2009 14:17:14 +0000</pubDate>
		<dc:creator>Timm</dc:creator>
				<category><![CDATA[Errors]]></category>
		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://www.csharp411.com/exceptions-are-for-exceptions/</guid>
		<description><![CDATA[Most programmers know that throwing exceptions takes a relatively long time to execute versus normal processing.&#160; Some say throwing exceptions is as much as two orders of magnitude slower than passing arguments (that’s 100 times slower for non-geeks).&#160; However, another article claims there’s almost no impact to throwing exceptions, unless you are running your software [...]]]></description>
		<wfw:commentRss>http://www.csharp411.com/exceptions-are-for-exceptions/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

