Visual Studio go to base implementation

Press F12 on override (or Ctrl+Click, or Right Click and Go To Definition)

protected override ItemViewModel OnNewItem()
{
    return new ItemViewModel();
}

will navigate to:

protected abstract ItemViewModel OnNewItem();

Leave a Reply

Your email address will not be published. Required fields are marked *