Skip to content

Instantly share code, notes, and snippets.

@inklesspen
Created September 20, 2010 02:33
Show Gist options
  • Select an option

  • Save inklesspen/587360 to your computer and use it in GitHub Desktop.

Select an option

Save inklesspen/587360 to your computer and use it in GitHub Desktop.
// Why this?
operandPos += 2;
value = (uint)(short)image.ReadInt16(operandPos - 2);
// Why not this instead?
value = (uint)(short)image.ReadInt16(operandPos);
operandPos += 2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment