Skip to content

Instantly share code, notes, and snippets.

@SriramSakthivel
Created March 7, 2015 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SriramSakthivel/bb1caf9b3ab06429b972 to your computer and use it in GitHub Desktop.
Save SriramSakthivel/bb1caf9b3ab06429b972 to your computer and use it in GitHub Desktop.
IL for the CallOrCallVirt.cs snippet
IL_0000: newobj SomeClass..ctor
IL_0005: stloc.0 // sc
IL_0006: ldloc.0 // sc
IL_0007: callvirt SomeClass.DoSomething //callvirt emitted
IL_000C: newobj SomeClass..ctor
IL_0011: call SomeClass.DoSomething //call emitted
IL_0016: ret
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment