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
input:
namespace ILSpyBugs { class Class3 { static void Method1(string s) { } void Method2() { dynamic d = "sss"; Method1("s" + d); } } }
output:
internal class Class3 { private static void Method1(string s) { } private void Method2() { dynamic d = "sss"; this.Method1("s" + d); } }
"this.Method1" is incorrect, "Method1" is a static method
ilspy version: 7.0.0.6284-preview2
The text was updated successfully, but these errors were encountered:
f52ce79
Fix icsharpcode#2278: Implement support for CSharpBinderFlags.InvokeS…
ee0aad4
…impleName
No branches or pull requests
input:
output:
"this.Method1" is incorrect, "Method1" is a static method
ilspy version: 7.0.0.6284-preview2
The text was updated successfully, but these errors were encountered: