<?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>CodeEase.com</title>
	<atom:link href="http://www.codeease.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codeease.com</link>
	<description>Code, Tech, C#, C++, Java, VB, ASP.NET, Phone, PHP, WCF, WPF, Silverlight, Android, Linux, Apple, Microsoft, Google</description>
	<lastBuildDate>Fri, 18 May 2012 16:12:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Microsoft Official WPF Samples</title>
		<link>http://www.codeease.com/microsoft-official-wpf-samples.html</link>
		<comments>http://www.codeease.com/microsoft-official-wpf-samples.html#comments</comments>
		<pubDate>Fri, 18 May 2012 16:12:58 +0000</pubDate>
		<dc:creator>codeease</dc:creator>
				<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://www.codeease.com/microsoft-official-wpf-samples.html</guid>
		<description><![CDATA[There are many WPF samples on the internet, but maybe you want Microsoft’s WPF samples. Here they are: 1: Windows Presentation Foundation Samples (.net 3.5); - 1.1: Application Samples (WPF) - 1.2: Technology Samples (WPF) 2: WPF Documentation Samples;]]></description>
		<wfw:commentRss>http://www.codeease.com/microsoft-official-wpf-samples.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodePlex Changed Face</title>
		<link>http://www.codeease.com/codeplex-changed-face.html</link>
		<comments>http://www.codeease.com/codeplex-changed-face.html#comments</comments>
		<pubDate>Mon, 14 May 2012 21:17:08 +0000</pubDate>
		<dc:creator>codeease</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.codeease.com/codeplex-changed-face.html</guid>
		<description><![CDATA[Maybe it is some late, but we just realized CodePlex.com changed face. Not only the face changed (they redesigned Home Page), but also some feature such as create a project. This is old home page: &#160; This is new home page: check CodePlex Official blog.]]></description>
		<wfw:commentRss>http://www.codeease.com/codeplex-changed-face.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nesting Try Catch Exception In C#</title>
		<link>http://www.codeease.com/nesting-try-catch-exception-in-c.html</link>
		<comments>http://www.codeease.com/nesting-try-catch-exception-in-c.html#comments</comments>
		<pubDate>Fri, 11 May 2012 14:44:27 +0000</pubDate>
		<dc:creator>codeease</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.codeease.com/nesting-try-catch-exception-in-c.html</guid>
		<description><![CDATA[In some cases you can use nesting Try…Catch exception handling: For example: A division-by-zero error try { try { Z = X / Y; } catch (DivideByZeroException ex) { Z = 0; } //... (other code) } catch (Exception ex) { //exception processing }]]></description>
		<wfw:commentRss>http://www.codeease.com/nesting-try-catch-exception-in-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight 5 Is Updating</title>
		<link>http://www.codeease.com/silverlight-5-is-updating.html</link>
		<comments>http://www.codeease.com/silverlight-5-is-updating.html#comments</comments>
		<pubDate>Fri, 11 May 2012 03:51:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://www.codeease.com/silverlight-5-is-updating.html</guid>
		<description><![CDATA[What ever people think Silverlight is dead or not, Microsoft is still keeping update Silverlight 5. 2012 May 8, Silverlight 5 was updated again. Pete Brown posted the news on his blog: Silverlight 5.1.10411.0 Released Today Pete Brown &#8211; 09 May 2012 Today we released a minor update to Silverlight 5. The 32 and 64 <a href='http://www.codeease.com/silverlight-5-is-updating.html'>[Read More ...]</a>]]></description>
		<wfw:commentRss>http://www.codeease.com/silverlight-5-is-updating.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPF: Animate An Object Along A Path</title>
		<link>http://www.codeease.com/wpf-animate-an-object-aloing-a-path.html</link>
		<comments>http://www.codeease.com/wpf-animate-an-object-aloing-a-path.html#comments</comments>
		<pubDate>Sat, 28 Apr 2012 03:20:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[Animation]]></category>

		<guid isPermaLink="false">http://www.codeease.com/wpf-animate-an-object-aloing-a-path.html</guid>
		<description><![CDATA[On MSDN there are several helpful article about how to animate an object along a path for WPF 4 (Unfortunately we tried some code, they do not work for Silverlight or part of them work): 1: How to: Animate an Object Along a Path (Double Animation); 2: How to: Animate an Object Along a Path <a href='http://www.codeease.com/wpf-animate-an-object-aloing-a-path.html'>[Read More ...]</a>]]></description>
		<wfw:commentRss>http://www.codeease.com/wpf-animate-an-object-aloing-a-path.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Administrator Permission Required From .NET Project</title>
		<link>http://www.codeease.com/remove-administrator-permission-required-from-net-project.html</link>
		<comments>http://www.codeease.com/remove-administrator-permission-required-from-net-project.html#comments</comments>
		<pubDate>Fri, 13 Apr 2012 14:54:21 +0000</pubDate>
		<dc:creator>codeease</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.codeease.com/remove-administrator-permission-required-from-net-project.html</guid>
		<description><![CDATA[When you create a .NET project, if you opened the Visual Studio as Administrator and created a project, The next time if you forget to open Visual Studio as Administrator, you will see the following pop windows to ask you restart Visual Studio under different credentials when you try to run your application: Normally after <a href='http://www.codeease.com/remove-administrator-permission-required-from-net-project.html'>[Read More ...]</a>]]></description>
		<wfw:commentRss>http://www.codeease.com/remove-administrator-permission-required-from-net-project.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft: Today&#8217;s WP Apps Will Run On Future Windows Phone And Silverlight Continue To Exist</title>
		<link>http://www.codeease.com/microsoft-todays-wp-apps-will-run-on-future-windows-phone-and-silverlight-continue-to-exist.html</link>
		<comments>http://www.codeease.com/microsoft-todays-wp-apps-will-run-on-future-windows-phone-and-silverlight-continue-to-exist.html#comments</comments>
		<pubDate>Fri, 06 Apr 2012 19:41:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows Phone]]></category>

		<guid isPermaLink="false">http://www.codeease.com/microsoft-todays-wp-apps-will-run-on-future-windows-phone-and-silverlight-continue-to-exist.html</guid>
		<description><![CDATA[Microsoft’s Larry Lieberman recently in his blog wrote: “Today’s Windows Phone applications and games will run on the next major version of Windows Phone. “ I think Microsoft should promise like this, otherwise they will lost lots of programmers. Current there are some situations let .NET programmers and Windows Phone programmers confused, they all have <a href='http://www.codeease.com/microsoft-todays-wp-apps-will-run-on-future-windows-phone-and-silverlight-continue-to-exist.html'>[Read More ...]</a>]]></description>
		<wfw:commentRss>http://www.codeease.com/microsoft-todays-wp-apps-will-run-on-future-windows-phone-and-silverlight-continue-to-exist.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s New in Silverlight 5</title>
		<link>http://www.codeease.com/whats-new-in-silverlight-5.html</link>
		<comments>http://www.codeease.com/whats-new-in-silverlight-5.html#comments</comments>
		<pubDate>Mon, 02 Apr 2012 21:54:55 +0000</pubDate>
		<dc:creator>codeease</dc:creator>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Silverlight 5]]></category>

		<guid isPermaLink="false">http://www.codeease.com/whats-new-in-silverlight-5.html</guid>
		<description><![CDATA[If you want to read more detail about what’s new in Silverlight 5, you can read Microsoft official site here. Here we will just post notes and related information: 1: Two new controls: PivotViewer and DrawingSurface. PivoitViewer control handle large amount of data or objects. DrawingSurface is actually from XNA on Windows phone 7 experience, <a href='http://www.codeease.com/whats-new-in-silverlight-5.html'>[Read More ...]</a>]]></description>
		<wfw:commentRss>http://www.codeease.com/whats-new-in-silverlight-5.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Host ASP.NET Web API In WPF Application</title>
		<link>http://www.codeease.com/host-asp-net-web-api-in-wpf-application.html</link>
		<comments>http://www.codeease.com/host-asp-net-web-api-in-wpf-application.html#comments</comments>
		<pubDate>Sun, 01 Apr 2012 07:14:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[WCF]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[Web API]]></category>

		<guid isPermaLink="false">http://www.codeease.com/host-asp-net-web-api-in-wpf-application.html</guid>
		<description><![CDATA[Now WCF Web API changed to ASP.NET Web API. ASP.NET Web API has the feature of self-host. In Microsoft official site, they also provides two simples ASP.NET Web API self-host samples. However, they are so simple and actually they looks like the “same” one because these 2 simples are Console applications and use very similar <a href='http://www.codeease.com/host-asp-net-web-api-in-wpf-application.html'>[Read More ...]</a>]]></description>
		<wfw:commentRss>http://www.codeease.com/host-asp-net-web-api-in-wpf-application.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Microsoft still making new version for WPF and Silverlight ?</title>
		<link>http://www.codeease.com/is-microsoft-still-making-new-version-for-wpf-and-silverlight.html</link>
		<comments>http://www.codeease.com/is-microsoft-still-making-new-version-for-wpf-and-silverlight.html#comments</comments>
		<pubDate>Thu, 29 Mar 2012 21:09:33 +0000</pubDate>
		<dc:creator>codeease</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://www.codeease.com/is-microsoft-still-making-new-version-for-wpf-and-silverlight.html</guid>
		<description><![CDATA[IT world is changing fast. There are always new tech everyday. Especially after HTML5 came, looks like lots of existing tech have been affected what ever how they were great. such as Flash, Silverlight… So the question is whether Microsoft is still working on the new versions of WPF and Silverlight ? We have watched <a href='http://www.codeease.com/is-microsoft-still-making-new-version-for-wpf-and-silverlight.html'>[Read More ...]</a>]]></description>
		<wfw:commentRss>http://www.codeease.com/is-microsoft-still-making-new-version-for-wpf-and-silverlight.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

