We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Having any delegate with stripped names (Using obfuscation methods)
internal delegate int SomeDelegate(string, string);
Let's have a look to the Invoke IL code:
.method public virtual instance int32 Invoke ( string '', string '' ) runtime managed { }
It uses empty named values, output is wrong.
internal delegate int SomeDelegate(string P_0, string P_1);
The text was updated successfully, but these errors were encountered:
Fix for icsharpcode#2908
896f9b7
I've added a quick fix, it shows proper code on this specific case. I can't provide the binary as it's private and sensitive.
Sorry, something went wrong.
Fix empty parameter names in delegate declarations (fixes icsharpcode…
feb736a
…#2908)
Merge pull request #2912 from ElektroKill/fix/issue2908
dcf3fa0
Fix empty parameter names in delegate declarations (fixes #2908)
Successfully merging a pull request may close this issue.
Input code
Having any delegate with stripped names (Using obfuscation methods)
Let's have a look to the Invoke IL code:
It uses empty named values, output is wrong.
Erroneous output
Expected output
Details
The text was updated successfully, but these errors were encountered: