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
Currently when a method has parameters with attributes it looks like
public void MethodName( int someParameter, [LongAttributeName(SomeFlag.SomeValue)] AnotherObject anotherObject, string anotherValue ) { return; }
Which makes it a little hard to tell where the parameters are. We could do something like below
public void MethodName( int someParameter, [ShortAttribute] AnotherObject anotherObject, string anotherValue ) { return; } public void MethodName( int someParameter, [LongAttributeName(SomeFlag.SomeValue, "MoreStuffToMakeThisLong")] AnotherObject anotherObject, string anotherValue ) { return; }
The text was updated successfully, but these errors were encountered:
Until formally assigned, I'll start looking into this.
Sorry, something went wrong.
brikabrak
Successfully merging a pull request may close this issue.
Currently when a method has parameters with attributes it looks like
Which makes it a little hard to tell where the parameters are.
We could do something like below
The text was updated successfully, but these errors were encountered: