Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to get a feel for what people are using for IoC containers. I've read some good things about Castle Windsor, but I know a lot of people use StructureMap, Unity, Ninject, etc.

What are some of the differences amongst those mentioned (and any I neglected). Strengths? Weaknesses? Better fit (like StructureMap is great for ABC but not so good for XYZ)?

share|improve this question

closed as not constructive by Will Sep 14 '11 at 15:20

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 4 down vote accepted

"Best" will always be subjective.

That said, I favor Castle Windsor because its XML is simpler. I've only tried Windsor and Spring.NET, by the way, so I couldn't say much about the others.

share|improve this answer
About Windsor's config, you can configure it programmatically with the new fluent registration API (using.castleproject.org/display/IoC/Fluent+Registration+API) – Mauricio Scheffer Dec 20 '08 at 17:46

I like StructureMap. The latest version allows you to declare inline too without having to resort to XML configuration files.

share|improve this answer

I like much Ninject... is simple, easy to use, it has such kind of fluid notation to declare bindings between classes and interfaces and supports contextual binding. Awesome.

share|improve this answer

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