When I have resolved a component using container.Resolve(), and I have finished using it, should I call Release()?
At the moment I call Dispose on any IDisposable that the container has got for me. Should I not call Dispose() on the object, but instead call Release() on the container instead? Does it do the same thing?
Thanks
David