Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created October 21, 2017 11:18
Show Gist options
  • Save NMZivkovic/85ea56e28ed36c334e8c8ad422cb035d to your computer and use it in GitHub Desktop.
Save NMZivkovic/85ea56e28ed36c334e8c8ad422cb035d to your computer and use it in GitHub Desktop.
interface IPrintAddress
{
void PrintAddress() { WriteLine("rubikscode.net"); }
}
class Blog : IPrintAddress { } // Doesn't cause error!
IPrintAddress i = new Blog();
i.PrintAddress(); // prints "rubikscode.net"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment