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
Changes GetProperty(name, flags) to GetProperty(name, flags, null, returnType, parameterTypes, null).
GetProperty(name, flags)
GetProperty(name, flags, null, returnType, parameterTypes, null)
In practice it's usually Type.EmptyTypes for parameterTypes but default and/or named indexers can exist and overload.
Not sure if this should be warn, info or hidden by default, but I'd probably bump it up to info or warn when using it myself.
The text was updated successfully, but these errors were encountered:
GU0023 reversed arguments in error message. Close DotNetAnalyzers#185.
5ccd247
There is another bug, the arguments are correct.
No branches or pull requests
Changes
GetProperty(name, flags)
toGetProperty(name, flags, null, returnType, parameterTypes, null)
.In practice it's usually Type.EmptyTypes for parameterTypes but default and/or named indexers can exist and overload.
Not sure if this should be warn, info or hidden by default, but I'd probably bump it up to info or warn when using it myself.
The text was updated successfully, but these errors were encountered: