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

Mistake ILSpy decompile #524

Closed
bprg opened this issue Dec 13, 2014 · 0 comments
Closed

Mistake ILSpy decompile #524

bprg opened this issue Dec 13, 2014 · 0 comments

Comments

@bprg
Copy link

bprg commented Dec 13, 2014

Original Code

    public class MyClass : Form
    {
        public void MyMethod()
        {
            base.Invoke(new MethodInvoker(() => base.Close()));
        }
    }

ILSpy Decompile Code

    public class MyClass : Form
    {
        public void MyMethod()
        {
            base.Invoke(delegate{base.Close();});
        }
    }
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Aug 11, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant