Skip to content

Instantly share code, notes, and snippets.

@nedgrady
Last active June 23, 2019 14:40
Show Gist options
  • Save nedgrady/da4d5098d59eecaf4f3d5ca81da99ae9 to your computer and use it in GitHub Desktop.
Save nedgrady/da4d5098d59eecaf4f3d5ca81da99ae9 to your computer and use it in GitHub Desktop.
// CSharp:
int i = 128;
// Compiles into:
// Push the value 128 (0x00000080) onto the stack
IL_0001: ldc.i4 80 00 00 00
// Store our 128 at location 0 (where the compiler has chosen for i to live).
IL_0002: stloc.0 // i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment