Hello,
I’m testing the demo, and I came a cross a problem where vmp compiled exe cannot get data from desterilized multi-dimension array..
For example, this video:
data.site.env
is unretrievable.
You can get data.site values only.
Hello,
I’m testing the demo, and I came a cross a problem where vmp compiled exe cannot get data from desterilized multi-dimension array..
For example, this video:
data.site.env
is unretrievable.
You can get data.site values only.
You have to switch off the option “Strip Debug information” or use the following code before ArrayProblem and _site classes like this:
[Obfuscation(Feature = "renaming", ApplyToMembers = true, Exclude = true)]
public class ArrayProblem
{
...
}
[Obfuscation(Feature = "renaming", ApplyToMembers = true, Exclude = true)]
public class _site
{
...
}