The error is pretty clear (which is a good surprise coming from
peverify), you're using variables that are not defined.
You're doing:
int a = 3;
int b = a;
switch (b) {}
You either need to define those variables and add them to the
Body.Variables collection.
Or simply remove them as they're not doing anything useful, and simply
say switch(3) {}
Jb
On Mon, Nov 17, 2014 at 5:43 PM, BlackSky Blacksky
<[email protected]> wrote:
>> PEVeryify Result:
>
>
> [IL]: Error: [C:\Users\Admin\Desktop\TinyApp-222.exe :
> TinyApp.Program::SwitchMethodTest][mdToken=0x6000003][offset 0x00000005]
> Unrecognized local variable number.(Error: 0x80131867)
>
> --
> --
> --
> mono-cecil
> ---
> You received this message because you are subscribed to the Google Groups
> "mono-cecil" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
--
--
--
mono-cecil
---
You received this message because you are subscribed to the Google Groups
"mono-cecil" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.