Search Results

3
votes

Help With Overriding and Inheritance…

As far as I know, in Java all methods are virtual by default. This is not the case with C#, so you need to mark the base class methods with "virtual", e.g. protected virtual string getMood() …