Skip to content

Instantly share code, notes, and snippets.

@carlosschults
Created December 21, 2017 01:33
Show Gist options
  • Save carlosschults/efde91de1a54a1bc4f44c1a7a748d70c to your computer and use it in GitHub Desktop.
Save carlosschults/efde91de1a54a1bc4f44c1a7a748d70c to your computer and use it in GitHub Desktop.
csharp8-interface.cs
interface IDisplayService
{
void DisplayMessage(string message) { WriteLine(message); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment