When I inherit from a base class, Visual Studio (v2008 here) informs me about all MustInherit members that need to be created in the derived class, which is very handy.
However, I also want my derived class to define some shared members - the values of which will be different for each derived class. Unfortunately, .NET doesn't allow MustInherit on shared members in a base class.
Is there any other way of getting Visual Studio to remind me that my derived class should also include certain specific shared members?