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
.net 4.0, c# 7.2 Roslynator 1.6.10
The following line of code produces RCS1163, Unused parameter (list). I believe this to be an error as 'list' is required for this lambda expression.
lReasons = lReasons.OrderBy(list => ranDom.Next()).ToList();
The text was updated successfully, but these errors were encountered:
RCS1163 is reported when parameter (or lambda parameter) is not used which is exactly this case.
Common approach to this concrete case would to to suppress this diagnostic (see How to Suppress).
Also, I'm thinking about possibility that RCS1163 would not be reported if the parameter name is '_' (see #245).
Sorry, something went wrong.
No branches or pull requests
.net 4.0, c# 7.2 Roslynator 1.6.10
The following line of code produces RCS1163, Unused parameter (list). I believe this to be an error as 'list' is required for this lambda expression.
lReasons = lReasons.OrderBy(list => ranDom.Next()).ToList();
The text was updated successfully, but these errors were encountered: