<?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>Adam Carter &#187; c# Archives  &#8211; Adam Carter</title>
	<atom:link href="http://adam-carter.com/posts/tag/c/feed" rel="self" type="application/rss+xml" />
	<link>http://adam-carter.com</link>
	<description>Documenting the misadventures of yours truly.</description>
	<lastBuildDate>Mon, 05 Dec 2011 18:41:29 +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>&#8220;The property is read only&#8221; Error Using RIA Services</title>
		<link>http://adam-carter.com/posts/624</link>
		<comments>http://adam-carter.com/posts/624#comments</comments>
		<pubDate>Wed, 13 Jul 2011 16:36:06 +0000</pubDate>
		<dc:creator>acarter</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[ria services]]></category>

		<guid isPermaLink="false">http://adam-carter.com/?p=624</guid>
		<description><![CDATA[If you&#8217;re trying to modify the property of an object automagically generated from RIA Services within a Silverlight application and you&#8217;re getting a runtime error indicating that the the property is read only, here&#8217;s a simple fix. Simply add the attribute &#8220;[Editable(true)]&#8221; from System.ComponentModel.DataAnnotations at the top of the field that you&#8217;d like to be [...]]]></description>
		<wfw:commentRss>http://adam-carter.com/posts/624/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Row not found or changed &amp; LINQ</title>
		<link>http://adam-carter.com/posts/188</link>
		<comments>http://adam-carter.com/posts/188#comments</comments>
		<pubDate>Mon, 12 Jul 2010 22:01:56 +0000</pubDate>
		<dc:creator>acarter</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://adam-carter.com/?p=188</guid>
		<description><![CDATA[This is a particularly well-known error (see here, here, and here), but this is the second time that I&#8217;ve had to do a search on this error so I thought that I&#8217;d post it here so that I can find it more quickly. Anyway, when this error occurs, make sure that the NULL types in [...]]]></description>
		<wfw:commentRss>http://adam-carter.com/posts/188/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SaveFileDialog Error When Debugging Silverlight Applications</title>
		<link>http://adam-carter.com/posts/173</link>
		<comments>http://adam-carter.com/posts/173#comments</comments>
		<pubDate>Wed, 09 Jun 2010 16:29:55 +0000</pubDate>
		<dc:creator>acarter</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[silverlight]]></category>

		<guid isPermaLink="false">http://adam-carter.com/?p=173</guid>
		<description><![CDATA[If you&#8217;re having difficulties debugging a section of code that uses the SafeFileDialog.ShowDialog() method, the reason is that Silverlight requires that the ShowDialog() method be called from a user-generated action. For whatever reason, entering into debug mode makes Silverlight think that you are not responding to a user-action, even when you are. To work around [...]]]></description>
		<wfw:commentRss>http://adam-carter.com/posts/173/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extending a UserControl in Silverlight</title>
		<link>http://adam-carter.com/posts/162</link>
		<comments>http://adam-carter.com/posts/162#comments</comments>
		<pubDate>Mon, 31 May 2010 17:10:53 +0000</pubDate>
		<dc:creator>acarter</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[silverlight]]></category>

		<guid isPermaLink="false">http://adam-carter.com/?p=162</guid>
		<description><![CDATA[In a current project that I&#8217;m working on, I needed to extend a UserControl to add some additional specialized functionality. This is very easy to do if all you need is to extend code, but it becomes much more difficult if you want to extend it via a XAML/C# UserControl. After much web searching, I [...]]]></description>
		<wfw:commentRss>http://adam-carter.com/posts/162/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable To Start Debugger: Visual Studio 2008</title>
		<link>http://adam-carter.com/posts/79</link>
		<comments>http://adam-carter.com/posts/79#comments</comments>
		<pubDate>Wed, 01 Oct 2008 19:36:39 +0000</pubDate>
		<dc:creator>acarter</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[vs2008]]></category>

		<guid isPermaLink="false">http://adam-carter.com/posts/79</guid>
		<description><![CDATA[If, by chance, you’re like me and recently installed Visual Studio 2008 onto a 64-bit version of Windows, you may be getting the following error when you attempt to debug an application: The components for the 64-bit debugger are not registered. Please repair your Visual Studio 2008 Remote Debugger installation via ‘Add or Remove Programs’ [...]]]></description>
		<wfw:commentRss>http://adam-carter.com/posts/79/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

