Return to Snippet

Revision: 66814
at July 8, 2014 05:35 by heathbo


Initial Code
[SuppressMessage("Microsoft.Performance", "CA1822:MarkMembersAsStatic", Justification = "Not Implemented Yet")]

Initial URL


Initial Description
Paste the code below, above the the method that's causing the error.

Replace Microsoft.Performance with the type of error it is.
Replace CA1822 with the error number.
Look up what the error number is and replace MarkMemberAsStatic with its definition.
Replace the Justification string with the reason you're suppressing the error.


If your using FxCop:
Analyze your code using the FxCop utility.
In the Active window / tab, right click on the line that represents the error.
Select Copy As / SuppressMessage.
Paste above the method that's causing the error.  This process will give you the same code as the steps above.  It just easier.

Initial Title
C#: How to suppress an error than keeps the solution from building

Initial Tags


Initial Language
C#