I find myself doing the following often enough that I feel like there must be an automated solution:
I have a wrapper class, say ListWrapper, which wraps an IList:
public class ListWrapper : IList
{
private IList _list;
// ... Implement IList by redirecting every call to _list
}
Is there any tool out there that will automatically generate this implementation?
public class Wrapper { /*some code*/ }and thenpublic class ListWrapper : List<Wrapper> { }unless I need a custom implementation – MilkyWayJoe Apr 10 '12 at 19:49