Windsor container

Posted on Wed Dec 19 @ 23:23:08

At work I’ve been looking at Windsor container and I must say it is a excellent peace of software. I don’t know how was I able to do my work properly without it thus far. I’m now preparing a series of 2 or 3 posts on my company blog site explaining how to use it and what are the benefits of using it.

I absolutely suggest to every .NET programmers out there to look at Windsor. It will save you time & money. Windsor helps you solve your object dependencies. If for example object A depends on object B (B is passed to A through the constructor) Windsor if properly configured can resolve that dependency when asking him to give you and instance of object A.

You can also configure him to give you a specific implementation of an interface. Then you can develop a different implementation of that interface (if your client asks) and replace the old implementation with the new one without ever recompiling the application. You just change the configuration to point to the new implementation.

There is a lot more to Windsor than this and because of that I invite you to read about it on the Windsor site.

Enjoy!

Posted in .NET, 0 Comments Comments

Comments


COMMENTS ARE DISABLED