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
When there are > 1 unused <param> before a <returns> (used or not), last unused <param> isn't removed.
<param>
<returns>
Repro:
/// <summary> /// Foo /// </summary> /// <param name="a"></param> /// <param name="b"></param> /// <returns>a + b</returns> public int Foo(int a, int b) => a + b;
Expected output:
/// <summary> /// Foo /// </summary> /// <returns>a + b</returns> public int Foo(int a, int b) => a + b;
Current output:
/// <summary> /// Foo /// </summary> /// <param name="b"></param> /// <returns>a + b</returns> public int Foo(int a, int b) => a + b;
Fix can be re-applied once there's only one param left
Roslynator v4.12.0, VS 2022 ,.NET 9
The text was updated successfully, but these errors were encountered:
josefpihrt
Successfully merging a pull request may close this issue.
When there are > 1 unused
<param>
before a<returns>
(used or not), last unused<param>
isn't removed.Repro:
Expected output:
Current output:
Fix can be re-applied once there's only one param left
Roslynator v4.12.0, VS 2022 ,.NET 9
The text was updated successfully, but these errors were encountered: