Skip to content

Instantly share code, notes, and snippets.

@hexagit
Last active September 18, 2018 08:20
Show Gist options
  • Select an option

  • Save hexagit/f1010e5498d36be9574ef0724584a1bd to your computer and use it in GitHub Desktop.

Select an option

Save hexagit/f1010e5498d36be9574ef0724584a1bd to your computer and use it in GitHub Desktop.
ILをデコンパイルしてみたい
public class TestC {
public float Add(float x, float y) {
return x + y;
}
public float TestM() {
var x = 1;
var y = 2;
return Add(x, y);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment