C# Open Source Projects with good architecture [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
开发者_开发技巧 Improve this questionI'm curious what are some good open source projects written in c# to learn about project architecture?
Mono.
Mef
I suggest you to study Autofac available at http://code.google.com/p/autofac/.
It's a very very good Inversion Of Control container (http://en.wikipedia.org/wiki/Inversion_of_control). You could learn a lot by studying the source and doing this you'll be able to use it in your own projects.
You should ever consider using an IoC for decouple software components.
Regards, Giacomo
精彩评论