I hear a lot of people say that one of the best ways to learn to write good code is to read good code, dig through it, and figure out what it's doing. That's fine and all, but how do I know it's good code worth digging through if I don't even know what good code is yet?

Since I develop with C#, where can I find some C# source code that follows good practices, demonstrates GoF patterns, unit testing, and all that other great stuff that we should be using in our own applications?

link|improve this question

feedback

6 Answers

Scott Hanselman has a occasional1 series on his blog "The Weekly Sourcecode"2 looking at interesting examples usually from open source projects (on .NET).


1 It isn't weekly…

2 This is the nearest tag I could find; there doesn't appear to be a more specific one.

link|improve this answer
feedback

The Microsoft developer website offers tonnes of code snippets. I'm thinking about learning C# myself shortly and this looks like a good startpoint or even knowledge reinforcer.

http://msdn.microsoft.com/en-us/vcsharp/aa336738

link|improve this answer
feedback

You can learn a lot from looking at open source projects. There are hundreds of them about. Of course, there is no guarantee of quality but here are some of the places you will find them:

I would suggest starting by picking some projects by developers noted for their commitment to best practices. For example, see if any of Ayende Rahein's projects take your interest. Or Rob Conery's Subsonic. Or maybe the Orchard project which was criticised at first for not being a good example of best practices, but I believe has had significant refactoring since. SharpDevelop is worth checking out for a Windows client app.

You will undoubtedly learn something from code reviewing an open source project even if it doesn't follow best practices in every area. As you are looking through you will find some nice ideas you want to copy, and other bits that confuse you or look poorly constructed.

link|improve this answer
feedback

codeplex.com is the place for you.

link|improve this answer
@his. __curious_geek: But how will I know which have good practices that I should learn from? – Richard DesLonde May 21 '11 at 8:51
feedback

In his book Microsoft .NET: Architecting Applications for the Enterprise Dino Esposito recommends the Northwind Starter Kit on codeplex.

It is described as "intended to be used as a blueprint when designing and implementing a .NET layered application architecture."

link|improve this answer
feedback

List of free and open source software packages:

http://en.wikipedia.org/wiki/List_of_free_and_open_source_software_packages

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.