I am new to C# and have been doing tutorials on .NET Academy. I have been stuck on this exercise and cannot figure out what to do. Here are the requirements:
Create an abstract class named Astrodroid that provides a virtual method called GetSound which returns a string. The default sound should be the words "Beep beep".
Implement a method called 'MakeSound' which writes the result of the GetSound method to the Console followed by a new line.
Create a derived class named R2 that inherits from Astrodroid.
Override the GetSound method on the R2 class so that it returns "Beep bop".
And here's what I have so far:
using System;
// Implement your classes here.
public abstract class Astrodroid
{
public virtual string GetSound { get { return "Beep beep"; } }
void MakeSound ()
{
Console.WriteLine(GetSound);
}
}
public class R2 : Astrodroid
{
public override string GetSound { get { return "Beep bop"; } }
void MakeSound ()
{
Console.WriteLine(GetSound);
}
}
public class Program
{
public static void Main()
{
}
}
Now my problem is I don't know how to make "GetSound" a method without getting compilation errors. How would you go about doing this?