I have a base class where I derive several classes. I have another class that uses all those derived classes in a different way. However, I want to call the Update()
method (inherited from the base class) on each derived class. Is there an easy way to do this, or do I have to do something like:
dim a As Derived1
a.Update
dim b As Derived2
b.Update
etc...