I often need to implement an interface by delegating the implementation to a member of my class. This task is quite tedious because, even though Visual Studio generates stubs for the interface methods, I still have to write the code to delegate the implementation. It doesn't require much thinking, so it could probably be automated by a code generation tool...
I'm probably not the first one to think of this, so there must be such a tool already, but I couldn't find anything on Google... Any idea ?
EDIT : it seems that ReSharper can do it, but it's pretty expensive... is there a free alternative with the same feature ?