Skip to content

Instantly share code, notes, and snippets.

@grumpydev
Forked from skoon/IRoboCop.cs
Created September 9, 2011 08:19
Show Gist options
  • Save grumpydev/1205746 to your computer and use it in GitHub Desktop.
Save grumpydev/1205746 to your computer and use it in GitHub Desktop.
public interface IJudgeDredd
{
void IAmTheLaw();
}
public interface IRoboCop : IJudgeDredd
{
void ServeThePublicTrust();
void ProtectTheInnocent();
void UpholdTheLaw();
[EditorBrowsable(EditorBrowsableState.Never)]
void Classified();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment