いくつかの抽象メソッドを持つ基本クラスがある場合、(EclipseやJavaのように)新しい派生クラスに実装する必要のあるメソッドの空の本体をVisual Studioに自動的に挿入させる方法はありますか?
そのようです:
public abstract class foo
{
public virtual void bar()
{
doSomething();
}
}
public class Derived : foo
{
//somehow tell VS to insert this without me having to write everything
public override void bar()
{
base.bar();
}
}