Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following, which I gather should disable a stylecop rule on a partiular line of code.

[SuppressMessage("Microsoft.StyleCop.CSharp.DocumentationRules",
                 "SA1300:ElementMustBeginWithUpperCaseLetter", 
                 Justification = "External API, no control")]
public void receivedEvent(NV.nConsumeEvent evt)
{
}

But it has no effect, the warning keeps showing. What's wrong?

share|improve this question

1 Answer

up vote 3 down vote accepted

It seems that SA1300 belongs to NamingRules, not to the DocumentationRules.

So, the correct suppressing would be:

[SuppressMessage(
    "Microsoft.StyleCop.CSharp.NamingRules",
    "SA1300:ElementMustBeginWithUpperCaseLetter", 
    Justification = "External API, no control")]
public void receivedEvent(NV.nConsumeEvent evt)
{
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.