public class Editor: User { | |
public Editor(string firstName) { | |
base(firstName); | |
} | |
public override void SayHello() { | |
base.SayHello(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment