up vote 139 down vote favorite
168
share [g+] share [fb]

Question:

What are some open source C# projects I can download that implement many best-practices and have a relatively high code quality?

Please accompany your answer with some of the reasons you consider the code is of high quality.


Suggestions so far:

link|improve this question
show 5 more comments
feedback

31 Answers

1 2

Scott Hanselman's The Weekly Source Code series is a nice read, he got 30+ episodes already and his comment is posted up along with each post as well.

link|improve this answer
show 5 more comments
feedback

I'm sorry that my post won't answer on your question, but I just want to add my 2 cents.

I doubt you can find any project with extremely high quality of code :)

I would be happy to know if I'm wrong, but I believe that people answered on this questions name applications because of their quality for end-users not because they written in high quality code.

Real-world projects being created to solve problems not to show off beautiful code.

You will be amazed if you take a look at metrics of some well-known projects.

I don't remember exact link, but there was a NDepend analysis of popular projects such as Paint.NET. Results were, let's say quite disappointing, but those projects are still good at what they do.

I saw millions of lines of code in commercial and open-source projects. I didn't see any project with extremely high quality but those project solved their task.

High quality code is somewhat subjective and even mystical matter. I think it would be much more useful to seek for good solution for a specific problem.

For example, project X has some really good code to solve Y, but it sucks in implementation of Z.

To make my post less off-topic, I can recommend you to take a look at code written by Microsoft Patterns & Practices team.

For example:

These projects are being written by very proficient developers, and they are intended specifically to teach how to come up with good solutions for some problems.

But even those projects suck terribly in implementation of some things :)

link|improve this answer
4  
You can say that about almost anything though. I think we can definately agree there is "bad" code.. and "not so bad code". I'm looking for the latter. So, when I say "extremely high quality code" I essentially mean code that doesn't suck, written by veterans and could expand my horizons a little – Simucal Sep 27 '08 at 6:14
show 1 more comment
feedback

SharpDevelop and Boo

link|improve this answer
feedback

I found the source for ASP.NET MVC to be a worthwhile read. At the time of writing, the latest source is avaliable to download on the preview 5 release page.

link|improve this answer
feedback

NHibernate, rhino mocks, the castle project.

link|improve this answer
feedback

You can look directly at the .Net Framwork source available here: http://referencesource.microsoft.com/netframework.aspx

link|improve this answer
show 1 more comment
feedback

The XNA Creators Club has some quite nice, open source code - even if you aren't interested in the XNA aspect. Each code sample is small enough to wrap your head around, and often have a very good design.

link|improve this answer
feedback

I would strongly recommend taking a look at Community Server. It is not an "Open Source" product per-se, but they provide a free Personal License and you can download the source for the entire system to muddle with.

link|improve this answer
feedback

Check out Rotor and CSLA

Rotor is a shared source implementation (from MS) of portions of the .Net framework. CSLA is a nice Business Object framework for creating rich client and web apps.

link|improve this answer
feedback

Have a look at mono and Paint.Net

link|improve this answer
show 3 more comments
feedback

I would recommend you to take a look at xUnit for example. Scott Hanselman has a serios of posts where he recommends some source code to take a look at (usually managed code written in C#): source code category posts

link|improve this answer
feedback

I would nominate the enterprise library which I maintain. Although it is virtually unknown :), it has been used on large project and performed really well. It is also FxCop compliant. It's called SixPack library.

link|improve this answer
feedback

I'm surprised no one mentioned Sharp Architecture

  • Focused on Domain Driven Design
  • NHibernate's best practices
  • MVC Framework
link|improve this answer
feedback

I'm surprised no one mentioned Ninject or Siesta yet, Nate Kohari has impeccable taste in writing source code

link|improve this answer
show 2 more comments
feedback

I think Mono could be a great place since the framework is built in C# itself. It might not fit your complexiity requoirement though

link|improve this answer
feedback
link|improve this answer
feedback

If you want to see true art I'd recommend you to download Boo and check out. I recognize Rodrigo B. De Olivias to be probably among the best handful of men alive today in regards to code and quality...

When that's said, I'd definitely give Ra-Ajax a look too. I'm the creator of that stuff and there are very many places in there which I consider to have the "quality of Mona Lisa"...

To those saying that code quality and "pragmatism" doesn't necessarily go hand in hand, I would just like to say that you're wrong...!

Usefulness in most circumstances grows parallel in a one-to-one relationship with code code quality...!

Also often to determine code quality you can often count the number of lines of code, in general. The more complex the solution solved with less lines of code - the better the quality (normally)

link|improve this answer
show 3 more comments
feedback

Another suggestion, if you're interested in medical imaging software is ClearCanvas. They've developed an open source medical imaging viewer, archive, and a radiology information system. More details and how to access the source can be found on the site.

They've developed an application framework for developing .NET desktop apps, which is used to develop the viewer and information system. There's also developer documentation to get you started for the viewer, if you'd want to customize it yourself.

link|improve this answer
feedback

John and Marc's MiscUtil is worth a look, the code is well commented and organized. It includes a large amount of tests.

link|improve this answer
feedback
  • In case nobody mentioned it SubSonic - powerful open source .Net DAL
  • Blog Engine - It is web based blogging platform. Contains a lot of reusable asp.net 2.0 C# code + it is extensible enough for custom adjustments.
link|improve this answer
feedback

What about DataObjects.Net? It's open-source commercial ORM + In-memory object database, seems to be quite interesting.

link|improve this answer
feedback

Phalanger, a PHP to .NET compiler has some very high quality, well documented code.

link|improve this answer
feedback

Pcap.Net.

Documented. High code coverage. Low warnings (including Code Analysis).

link|improve this answer
feedback

forums.agbotting.net in the release forum go to svns, I know the guy who coded that it's a bot and maphack for a video game called Diablo II, that him and a friend wrote themselfs. I believe it's of pretty good quality, and it's not very huge.

Enjoy

P.S When it doubt, call the magic powers of source forge.

Oh yeah, and of course SharpDevelop

link|improve this answer
show 11 more comments
feedback

While I don't know about the actual code quality, you can have a look at the .NET Framework itself. At least they have FxCop and StyleCop running against it, since that's what the two tools were made for.

Visual Studio allows stepping into the BCL source, and there are some tools that misuse this functionality to download the entire source code. You can also look into the code with Reflector, since it is not obfuscated.

link|improve this answer
1  
you don't even have to go through all that trouble ==> referencesource.microsoft.com/netframework.aspx (see also answer above) – fretje Jun 16 '09 at 12:18
feedback

MediaPortal. Individual sections of code are quite good, unfortunately it is not as cohesive as one might hope. There is an enormous amount of C# code covering everything from DB manipulation and XML manipulation to multimedia directshow programming and directx rendering.

link|improve this answer
feedback

Personally, I've been amazed at what the people at the Kigg project have put together:

http://kigg.codeplex.com/Wikipage

Really some amazing stuff to see as to how they tackle building a robust, modern C# app.

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

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