Ok, bear with me guys and girls as I\'m learning. Here\'s my question.
I can\'t figure out why I can\'t override a method from a parent class. Here\'s the code fro
You need to tell C# that your object is overriding the function from the base class.
Here is the MSDN article about the syntax you need: http://msdn.microsoft.com/en-us/library/ebca9ah3(VS.71).aspx
public class SadObject: MoodyObject { override String getMood()