May 2010
Intermediate to advanced
1272 pages
61h 18m
English
MyBase KeywordWhen you need to get a reference to the base class of the derived class you are working on, you can invoke the MyBase keyword. This keyword represents an instance of the base class and enables working on members as they are exposed by the base class, instead of the ones exposed by the derived class. Consider the following implementation of the Person class, in which a FullInformation method provides a representation of all the info supplied to the class:

Now we can create a new implementation of the Contact class, inheriting from Person. A new class needs to override the FullInformation method from the base class. When you type ...
Read now
Unlock full access