Top "Structuremap" questions

StructureMap is a Dependency Injection / Inversion of Control tool for .NET licensed under Apache 2.

Named Instances and a Default Instance in StructureMap?

In my StructureMap bootstrapping code I'm using a custom convention to scan assemblies and add interface/implementation pairs to the …

c# .net dependency-injection ioc-container structuremap
structuremap - two implementations of same interface

I have a service class with the following ctor: public class (IMessageService emailService, IMessageService smsService) { ... } and two implementations of IMessageService (…

c# dependency-injection inversion-of-control structuremap