C#DecompilerEnhancementHelp Wanted
Repository metrics
- Stars
- (25,162 stars)
- PR merge metrics
- (平均マージ 15d 22h) (30d で 61 merged PRs)
説明
Ver. tested: d2f72583 Tested with multiple csc compilers.
class C
{
public delegate void Del_t();
Del_t dels;
public void fn()
{
dels += cb;
}
private void cb() {}
}
Expected: fn to decompile to src form.
Actual:
public void fn()
{
dels = (Del_t)Delegate.Combine(dels, new Del_t(cb));
}
I could have sworn this used to work. Have I been dreaming? Is it a regression?