<?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>Thinking Different &#187; c#</title>
	<atom:link href="http://christianpayne.com.au/category/development/c/feed/" rel="self" type="application/rss+xml" />
	<link>http://christianpayne.com.au</link>
	<description></description>
	<lastBuildDate>Wed, 08 Sep 2010 07:54:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Linq &#8211; Multiple Group By</title>
		<link>http://christianpayne.com.au/2010/02/01/linq-multiple-group-by/</link>
		<comments>http://christianpayne.com.au/2010/02/01/linq-multiple-group-by/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 22:29:54 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[LINQ]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[group by]]></category>
		<category><![CDATA[multiple]]></category>
		<category><![CDATA[multiple group by]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=304</guid>
		<description><![CDATA[This has been bugging me for a LONG time! I&#8217;ve finally found an example of how to group by multiple values using LINQ: IList doc_infos = new List(); doc_infos.Add(new doc_info { region = "UK", price = 100, currency = "US" }); doc_infos.Add(new doc_info { region = "US", price = 100, currency = "US" }); var [...]]]></description>
			<content:encoded><![CDATA[<p>This has been bugging me for a LONG time!</p>
<p>I&#8217;ve finally <a href="http://www.devcurry.com/2009/02/groupby-multiple-values-in-linq.html">found</a> an example of how to group by multiple values using LINQ:<br />
<code>IList doc_infos = new List();</code></p>
<p><code>doc_infos.Add(new doc_info { region = "UK", price = 100, currency = "US" });<br />
doc_infos.Add(new doc_info { region = "US", price = 100, currency = "US" });</p>
<p></code></p>
<p><code>var docs = doc_infos.GroupBy(x =&gt; new { x.price, x.currency })<br />
.Select(group =&gt; new { d = group.Key, Count = group.Count() });</code></p>
<p>For more examples, have a look <a href="http://www.devcurry.com/2009/02/groupby-multiple-values-in-linq.html">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2010/02/01/linq-multiple-group-by/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET &amp; MVC</title>
		<link>http://christianpayne.com.au/2008/12/15/aspnet-mvc/</link>
		<comments>http://christianpayne.com.au/2008/12/15/aspnet-mvc/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 11:05:22 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[development ASP.Net MVC C#]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/2008/12/15/aspnet-mvc/</guid>
		<description><![CDATA[I&#8217;ve been trying to tackle this monster the past week. Here&#8217;s what I&#8217;ve learnt: 1. It&#8217;s implementation on the .net framework has changed a LOT! Most samples available are out of date and won&#8217;t compile 2. It&#8217;s potential is massive! For the first time, I can see Test Driven Development really working! 3. The current [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying to tackle this monster the past week.</p>
<p>Here&#8217;s what I&#8217;ve learnt:<br />
1.  It&#8217;s implementation on the .net framework <a href="http://www.codeplex.com/aspnet/SourceControl/ListDownloadableCommits.aspx">has changed a LOT</a>! <a href="http://www.codeplex.com/Kigg"> Most</a> <a href="http://www.asp.net/learn/mvc-videos/video-373.aspx">samples</a> available are out of date and won&#8217;t compile</p>
<p>2.  It&#8217;s potential is massive!  For the first time, I can see <a href="http://www.google.com.au/search?num=50&amp;hl=en&amp;newwindow=1&amp;safe=off&amp;rlz=1B3GGGL_enAU278AU279&amp;defl=en&amp;q=define:TDD&amp;sa=X&amp;oi=glossary_definition&amp;ct=title">Test Driven Development</a> really working!</p>
<p>3. <a href="http://www.microsoft.com/downloads/details.aspx?familyid=a24d1e00-cd35-4f66-baa0-2362bdde0766&amp;displaylang=en"> The current version</a> does not work well with the .NET AJAX Toolkit controls</p>
<p>4.  There are many parts to it!  While the <a href="http://martinfowler.com/eaaCatalog/modelViewController.html">MVC Pattern</a> sounds simple, it only works effectively with the <a href="http://martinfowler.com/eaaCatalog/repository.html">Repository Pattern</a> and <a href="http://tutorials.jenkov.com/dependency-injection/index.html">Dependency Injection</a></p>
<p>Still, I&#8217;m hooked!</p>
]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2008/12/15/aspnet-mvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn Ruby without installing anything!</title>
		<link>http://christianpayne.com.au/2006/09/28/learn-ruby-without-installing-anything/</link>
		<comments>http://christianpayne.com.au/2006/09/28/learn-ruby-without-installing-anything/#comments</comments>
		<pubDate>Thu, 28 Sep 2006 00:29:49 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://cpayne.wordpress.com/2006/09/28/learn-ruby-without-installing-anything/</guid>
		<description><![CDATA[Saw this here. Imagine if Microsoft did this with Visual Studio??? Have a look!]]></description>
			<content:encoded><![CDATA[<p>Saw this <a href="http://bob.yexley.net/archive/2006/09/26/Learn-Ruby-without-installing-anything.aspx">here</a>.</p>
<p>Imagine <a href="http://msdn.microsoft.com/vstudio/" target="_blank">if Microsoft did this with Visual Studio???</a></p>
<p><a href="http://tryruby.hobix.com/">Have a look!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2006/09/28/learn-ruby-without-installing-anything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing / Debugging a Windows Service in VS 2005</title>
		<link>http://christianpayne.com.au/2006/09/28/writing-debugging-a-windows-service-in-vs-2005/</link>
		<comments>http://christianpayne.com.au/2006/09/28/writing-debugging-a-windows-service-in-vs-2005/#comments</comments>
		<pubDate>Wed, 27 Sep 2006 23:51:22 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://cpayne.wordpress.com/2006/09/28/writing-debugging-a-windows-service-in-vs-2005/</guid>
		<description><![CDATA[(There&#8217;s a million of these out there) but here&#8217;s one I haven&#8217;t seen before. Short version is that you include a form in your service. Start your service with a command line (ie. Service.exe -instance) and it runs from a form. &#160; Cool eh?!]]></description>
			<content:encoded><![CDATA[<p>(There&#8217;s a million of these out there) but here&#8217;s <a href="http://devlicio.us/blogs/bob_yexley/archive/2006/09/27/Custom-service-controller-for-debugging-windows-services.aspx" target="_blank">one I haven&#8217;t seen before</a>.</p>
<p>Short version is that you include a form in your service.  Start your service with a command line (ie.  <em>Service.exe -instance</em>) and it runs from a form.</p>
<p>&nbsp;</p>
<p>Cool eh?!</p>
]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2006/09/28/writing-debugging-a-windows-service-in-vs-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dropdown field in a gridview</title>
		<link>http://christianpayne.com.au/2006/09/26/dropdown-field-in-a-gridview/</link>
		<comments>http://christianpayne.com.au/2006/09/26/dropdown-field-in-a-gridview/#comments</comments>
		<pubDate>Tue, 26 Sep 2006 03:40:45 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://cpayne.wordpress.com/2006/09/26/dropdown-field-in-a-gridview/</guid>
		<description><![CDATA[You know when you come across something you *know* is really good, but have little if any need for it right now?? Well, that&#8217;s the case with this. It shows you how to do a drop down list in a grid view. Rock on! Christian &#160; Tags: BlogDesk, C#, GridView]]></description>
			<content:encoded><![CDATA[<p>You know when you come across something you *know* is really good, but have little if any need for it right now??</p>
<p>Well, that&#8217;s the case with <a href="http://devlicio.us/blogs/christopher_bennage/archive/2006/09/20/Custom-Fields-for-GridView-Tips.aspx" target="_blank">this</a>.  It shows you how to do a drop down list in a grid view.</p>
<p>Rock on!</p>
<p>Christian</p>
<p>&nbsp;</p>
<p>Tags: <a href="http://technorati.com/tag/BlogDesk" rel="tag">BlogDesk</a>, <a href="http://technorati.com/tag/C#" rel="tag">C#</a>, <a href="http://technorati.com/tag/GridView" rel="tag">GridView</a></p>
]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2006/09/26/dropdown-field-in-a-gridview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
