Yesterday I\'ve implemented the code:
CustomerProductManager productsManager = container.Resolve();
It was co
I faced this problem and none of this answers did not help me. I was getting the compile time error
Unknown method RegisterType() of Microsoft.Practices.Unity.IUnityContainer
for my below code.
Container.RegisterType
I found that if you did not implement IMyInterface to the class MyClass, you get this issue.
Hope it resolves for you too...