Proper way to inflate a class which expect an array #191
Unanswered
SamueleD78
asked this question in
Q&A
Replies: 1 comment 1 reply
-
An array class (e.g. const SystemString = Il2Cpp.Image.corlib.class("System.String");
const SystemStringArray = SystemString.arrayClass; // System.String[] |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a class
System.Collections.Generic.Dictionary<System.String,System.String[]>
In order to inflate it, passing the first argument it's really easy, i just recover the class and i pass to the inflate method as the first argument.
But what about the second, the array? Is it just the normal class or i have to do something more?
I'm in the dark.. thank you so much!
Beta Was this translation helpful? Give feedback.
All reactions