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
SA1313 should be suppressed when all of the following conditions are met:
Example:
public interface ISomeType { void Method(int Param1, int Param2, int Param3); } public abstract class SomeType : ISomeType { public abstract void Method( int Param1, // OK int Param3, // SA1313 int param3); // OK }
The text was updated successfully, but these errors were encountered:
Grabbed
Sorry, something went wrong.
hvanbakel
No branches or pull requests
SA1313 should be suppressed when all of the following conditions are met:
Example:
The text was updated successfully, but these errors were encountered: