Skip to content

Instantly share code, notes, and snippets.

@JasonBock
Created May 10, 2022 19:14
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save JasonBock/b2b08b177901beca49979968859c6c3f to your computer and use it in GitHub Desktop.
public interface IDriver
{
public static void Drive(IEnumerable<IDriver> drivers)
{
foreach(var driver in drivers)
{
driver.Drive();
}
}
void Drive();
void Stop() { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment