dnSpyEx / dnSpy

Unofficial revival of the well known .NET debugger and assembly editor, dnSpy
GNU General Public License v3.0
7.02k stars 462 forks source link

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

Open 1260zqs opened 1 day ago

1260zqs commented 1 day ago

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

GazziFX commented 1 day ago

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