Created
May 10, 2022 18:59
-
-
Save JasonBock/0bbcd7882f6681cfc088e4e1ea11e5ec 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 sealed class Racer | |
: IDriver | |
{ | |
public void Drive() | |
{ | |
var value = RandomNumberGenerator.GetInt32(120, 220); | |
Console.WriteLine($"{value} MPH"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment