Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Last active February 17, 2019 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsibinski/7b5c3454e4976c1b96ac97500be949fc to your computer and use it in GitHub Desktop.
Save dsibinski/7b5c3454e4976c1b96ac97500be949fc to your computer and use it in GitHub Desktop.
interface IDeveloper
{
void LearnNewLanguage(string language, DateTime dueDate);
}
class BackendDev : IDeveloper
{
public void LearnNewLanguage(string language, DateTime dueDate)
{
// Learning new language...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment