C # open source projects with good architecture

I'm curious what good open source projects are written in C # to learn about project architecture?

+4
source share
3 answers
+3
source
0
source

I suggest you learn Autofac at http://code.google.com/p/autofac/ .

This is a very good Inversion Of Control container (http://en.wikipedia.org/wiki/Inversion_of_control). You can learn a lot by studying the source and by doing this, you can use it in your projects.

You should ever consider using IoC components to decouple programs.

Regards, Giacomo

0
source

Source: https://habr.com/ru/post/1308446/


All Articles