overide a base method that is not virtual

M

Mark

Assume class2 inherits from class1, and that the method foo() in class2
should override a non-virtual method foo() in class1. How do you indicate
that it overrides foo() in class1 using Visio?

Thanks in advance!
Mark
 
S

Steve Cox

Mark,

You can use the shadows keyword, but that is not the same as overrides.
Shadows hides the base class method.

Look up Shadows and Shadowing in the help and compare to overrides and
overrideable.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top