any way to tell what fields a method accesses. #467
Unanswered
aarnithesuperproguyprosuperguypropro
asked this question in
Q&A
Replies: 2 comments 7 replies
-
Please tell me too if you get |
Beta Was this translation helpful? Give feedback.
0 replies
-
Use ida or ghidra or similar app to open il2cpp |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
for example
private uint value;
private bool something = false;
void checkForSomething(){
something = (value >= 130);
}
Is there a way to know what fields the method accesses?
Beta Was this translation helpful? Give feedback.
All reactions