I have been reading up on SOLID principles and was wondering if there is a good large opensource application or project in DOTNET that shows SOLID principles in use in a real world product.

If there are any other opensource projects that are considered to be good coding samples I would be very intrested to see them these too.

Regards

Ian

link|improve this question

64% accept rate
Are you looking for web or windows applications? – Giorgi Feb 10 '10 at 9:49
It doesnt matter aslong as the good is good. thanks – SetiSeeker Feb 11 '10 at 6:38
feedback

4 Answers

up vote 4 down vote accepted

Check out:

link|improve this answer
feedback

For an example of ASP.NET MVC application you can use Who can help me?

link|improve this answer
1  
and who-can-help.me/about -> here you can get most of the important C# opensource apps... – RameshVel Feb 10 '10 at 10:42
feedback

Not really an application, but FubuMVC and OpenRASTA frameworks are both written very well.

link|improve this answer
feedback

I'm not totally up to date in .NET, but as far as I know .NET doesn't implement return type covariance, which goes against the L principle in "SOLID" (Liskov substitution principle).

link|improve this answer
so.... you can still write good and bad code in any language no matter the functionality. Are you seriously saying that all c# code is bad because of this? – AnthonyLambert Feb 10 '10 at 10:04
Never said that, just that one of the SOLID principles cannot be implemented in C#. It's not a matter of code quality, it's a matter of discovering the SOLID principles in their entirety. – Sylvestre Equy Feb 10 '10 at 10:26
1  
I can't see why this answer gets a -1. Sylvestre is correct, .NET does not implement return type covariance and so does not fully adhere to SOLID principles. IME this is not problem when working with .NET, but since the q. refers to SOLID it is worth pointing out I think! – Steve Haigh Feb 10 '10 at 13:34
I dare to disagree. This answer has no direct relation to the question. – Krzysztof Koźmic Feb 10 '10 at 14:50
1  
@Kryzsztof - it speaks directly to the question, the questioner is looking for examples of SOLID, and technicaly speaking, .NET does not support the "L" in SOLID. It may be a pedantic point, but the question explicitly refered to SOLID so it is worth pointing out. – Steve Haigh Feb 10 '10 at 16:52
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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