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

decompile is worng with accesser private protected IntPtr Handle { protected get; private set; } #386

Open
1260zqs opened this issue Nov 28, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@1260zqs
Copy link

1260zqs commented Nov 28, 2024

dnSpyEx version

6.5.1

Describe the Bug

private protected IntPtr Handle { protected get; private set; }
this code should be
private protected IntPtr Handle { get; private set; }

How To Reproduce

just decompile issue

Expected Behavior

private protected IntPtr Handle { get; private set; }

Actual Behavior

private protected IntPtr Handle { protected get; private set; }

Additional Context

No response

@1260zqs 1260zqs added the bug Something isn't working label Nov 28, 2024
@GazziFX
Copy link

GazziFX commented Nov 29, 2024

I don't think there could be multiple access flags at time, and probably got stripped at compilation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants