[Solved] IoC container that doesn’t require registration

What you’re looking for is the concept of Auto-Registration. Most containers allow you to either register types in an assembly based on a convention, or do unregistered type resolution and find the missing type for you. For instance, you can search through an assembly and register all types that match the convention during startup: var … Read more