Created
July 10, 2009 17:03
-
-
Save mletterle/144621 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
.assembly Example {} | |
.assembly extern mscorlib {} | |
.namespace ExampleNameSpace | |
{ | |
.class public ExampleClass | |
{ | |
.method public virtual instance bool EqualOverride(object obj) | |
{ | |
.override [mscorlib]System.Object::Equals | |
.maxstack 2 | |
ldarg.0 | |
ldarg.1 | |
call instance bool [mscorlib]System.Object::Equals(object) | |
ret | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment