Is there a shortcut of some kind in C# (VS 2008) to automatically implement the virtual and abstract base class methods in a derived class?
Don't think this existed when the original question was asked, but at least as of VS 2013, you can automatically create stubs for abstract methods & properties. Just right click on the abstract class name (in your class definition) and pick "Implement Abstract Class". Just like CMS showed with automatically implementing interfaces.