Created
December 21, 2017 01:33
-
-
Save carlosschults/efde91de1a54a1bc4f44c1a7a748d70c to your computer and use it in GitHub Desktop.
csharp8-interface.cs
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
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