Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eazfuscator.NET v5.8 reader execption #6

Open
vdroy97 opened this issue Jan 11, 2018 · 0 comments
Open

Eazfuscator.NET v5.8 reader execption #6

vdroy97 opened this issue Jan 11, 2018 · 0 comments

Comments

@vdroy97
Copy link

vdroy97 commented Jan 11, 2018

new version Eazfuscator.NET v5.8 not working in reader
Deserialize(BinaryReader reader)
{
Int32 count = (Int32)reader.ReadInt16();
this.Locals = new SerializedLocal[count];
for (Int32 i = 0; i < count; i++)
this.Locals[i] = new SerializedLocal(reader);

		    this.ReturnTypeCode = reader.ReadInt32();
            this.Unknown1 = reader.ReadBoolean();
		    this.Unknown3 = reader.ReadInt32();

		    count = (Int32)reader.ReadInt16();
		    this.Parameters = new SerializedParameter[count];
		    for (Int32 i = 0; i < count; i++)
		        this.Parameters[i] = new SerializedParameter(reader);

		    this.Name = reader.ReadString();
		}

due to virtualopcode
Can you fix that?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant