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:
public class Obj { public string this[ [A] int X, [B, VeryLongAttributeWithSoManyArguments(123, 321)] int Y, [C, LongAttributeThatIsLong] int Y ] => X + Y + Z; public string Method( [A] int X, [B, VeryLongAttributeWithSoManyArguments(123, 321)] int Y, [C, LongAttributeThatIsLong] int Y ) => X + Y + Z; }
Output:
public class Obj { public string this[[A] int X, [B, VeryLongAttributeWithSoManyArguments(123, 321)] int Y, [ C, LongAttributeThatIsLong ] int Y] => X + Y + Z; public string Method( [A] int X, [B, VeryLongAttributeWithSoManyArguments(123, 321)] int Y, [C, LongAttributeThatIsLong] int Y ) => X + Y + Z; }
Expected behavior: Both indexer and Method being formatted similarly with multiple lines for parameters.
The text was updated successfully, but these errors were encountered:
Make sure indexer declarations print consistently with other paramete…
62d1ea0
…r lists closes #1255
7653a6d
…r lists (#1278) closes #1255
Successfully merging a pull request may close this issue.
Input:
Output:
Expected behavior:
Both indexer and Method being formatted similarly with multiple lines for parameters.
The text was updated successfully, but these errors were encountered: