vote up 0 vote down star
2

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 ?

flag

Ah the extract decorator. I've been meaning to do this in Coderush for ages - never found time. I'd be interested in the answers to this. – Preet Sangha Aug 14 at 0:47

1 Answer

vote up 1 vote down

You could try this : http://www.codeproject.com/KB/codegen/decorators.aspx?display=PrintAll&fid=1532149&df=90&mpp=25&noise=3&sort=Position&view=Quick&select=2837870

link|flag
Thanks for you answer ! This tool looks nice, but it only allows to apply this pattern for types in the same project. I need to do it for BCL types (typically ICollection<T> or IDictionary<K,V>) – Thomas Levesque Aug 14 at 1:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.