Skip to content

Instantly share code, notes, and snippets.

@grumpydev
Forked from skoon/IRoboCop.cs
Created September 9, 2011 08:19
Show Gist options
  • Select an option

  • Save grumpydev/1205746 to your computer and use it in GitHub Desktop.

Select an option

Save grumpydev/1205746 to your computer and use it in GitHub Desktop.

Revisions

  1. grumpydev revised this gist Sep 9, 2011. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion IRoboCop.cs
    Original file line number Diff line number Diff line change
    @@ -4,7 +4,7 @@ public interface IJudgeDredd
    }


    public interface IRoboCop : IJudgeDread
    public interface IRoboCop : IJudgeDredd
    {
    void ServeThePublicTrust();

  2. grumpydev revised this gist Sep 9, 2011. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion IRoboCop.cs
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    public interface IJudgeDread
    public interface IJudgeDredd
    {
    void IAmTheLaw();
    }
  3. Scott Koon revised this gist Sep 9, 2011. 1 changed file with 7 additions and 1 deletion.
    8 changes: 7 additions & 1 deletion IRoboCop.cs
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,10 @@
    public interface IRoboCop
    public interface IJudgeDread
    {
    void IAmTheLaw();
    }


    public interface IRoboCop : IJudgeDread
    {
    void ServeThePublicTrust();

  4. grumpydev created this gist Sep 9, 2011.
    11 changes: 11 additions & 0 deletions IRoboCop.cs
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    public interface IRoboCop
    {
    void ServeThePublicTrust();

    void ProtectTheInnocent();

    void UpholdTheLaw();

    [EditorBrowsable(EditorBrowsableState.Never)]
    void Classified();
    }