vote up 2 vote down star

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?

flag

75% accept rate

3 Answers

vote up 8 vote down check

For virtual methods, you can type override and then a space. Intellisense should offer you a list of options.

For abstract methods and properties, you can use the smart tag on the base class or interface (also, Ctrl+. or Shift+Alt+F10 will show the smart tag menu) to generate the concrete items.

For example, in the following code snippet, you could place the caret at the end of INotifyPropertyChanged and press Ctrl+. to then select Implement Interface, and the PropertyChanged event would be added to MyClass:

class MyClass : INotifyPropertyChanged
{
}
link|flag
vote up 4 vote down

Just type the Interface that you want to implement, and then click on the Smart Tag, a context menu will popup, and then you can select either Implement Interface or Implement Interface Explicitly:

All the members to be overridden will be contained within a code region that is named to reflect its purpose.

All the members will have a line that throws a NotImplementedException.

link|flag
vote up 1 vote down

For virtual methods type override, give an space and intellisense will show you all methods that can be inherited.

link|flag

Your Answer

Get an OpenID
or

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