Reputation: 407
Please, advise good DI/IOC for .NET Framework 2.0. The customer requires this version of .NET framework.
Have a nice day!
Upvotes: 1
Views: 1104
Reputation: 20044
Perhaps you should get the book "Dependency Injection in .NET"
http://www.manning.com/seemann/
it is available as an early-access edition and contains a comparison of different DI containers for .NET. This (german) site
http://www.clean-code-developer.de/Tools.ashx
contains a list of links to different DI / IOC containers. Hope this helps.
Upvotes: 1
Reputation: 5194
I am a huge fan of Autofac as an IoC container.
The current version is only for .NET 3.5 and 4.0, but you'll find that the previous versions were designed with .NET 2.0 in mind.
My company uses Autofac 1.3 in a number of .NET 2.0 applications, and have found it to be a very powerful IoC container.
Upvotes: 4