Last active
September 18, 2018 08:20
-
-
Save hexagit/f1010e5498d36be9574ef0724584a1bd to your computer and use it in GitHub Desktop.
ILをデコンパイルしてみたい
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
| 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