Created
May 12, 2022 15:03
-
-
Save JasonBock/fef35fd35ef1af54ae639b49fb415332 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public sealed class Golfer | |
: IDriver | |
{ | |
public void Drive() | |
{ | |
var value = RandomNumberGenerator.GetInt32(250, 320); | |
Console.WriteLine($"{value} yards"); | |
} | |
public override void Stop() | |
{ | |
// Note: This doesn't work. | |
IDriver.base.Stop(); | |
var value = RandomNumberGenerator.GetInt32(250, 320); | |
Console.WriteLine($"{value} yards"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment