vfsfitvnm / frida-il2cpp-bridge

A Frida module to dump, trace or hijack any Il2Cpp application at runtime, without needing the global-metadata.dat file.
https://github.com/vfsfitvnm/frida-il2cpp-bridge/wiki
MIT License
918 stars 191 forks source link

How to access enum which is nested in a class? #484

Closed etmltg69 closed 5 months ago

etmltg69 commented 5 months ago

I have a class which contains a nested enum but I can't access it..

Class looks like following:

class A {
   public enum Status {
      Active,
      Disabled
   }
}

How to handle that problem? Thanks!

vfsfitvnm commented 5 months ago

See https://github.com/vfsfitvnm/frida-il2cpp-bridge/issues/219#issuecomment-1237993445 :cheese: