Is there any method built-in to Ninject which allows for dynamic instantiation of any given type given its assembly-qualified name (without the need to bind the types manually in a custom NinjectModule
)?
I could of course use Activator.CreateInstance
but since I am already using Ninject I would prefer sticking to it rather than using this method (which I heard may be pretty slow, by the way).