What is the equivalent of Ninject.IKernel in Unity

148 Views Asked by At

This may seem odd but what is the equivalent of Ninject.IKernel interface in Unity?

Thanks

1

There are 1 best solutions below

0
On BEST ANSWER

In Unity that would be the Microsoft.Practices.Unity.IUnityContainer interface.

This is the main interface in Unity which collects the methods for registration (RegisterType, RegisterInstance), resolvig (Resolve) , configuration (AddExtension) etc. See also on MSDN