I'm looking for a way how to find a SuppressMessageAttribute catagory for a given warning (BC42015).
After recieving the following warning I would like to suppress it.
'SomeLib.SomeInterface.DrawRuler' is already implemented by the base class 'SomeLib.SomeClass'. Re-implementation of function assumed. C:\Project\somefile.vb 5 115 ALibName
Using the SuppressMessage attribute should work but how can I find the relevant Catagory. The following won't work.
<CodeAnalysis.SuppressMessageAttribute("IDUNNO","BC42015")>
All MSDN examples are pretty useless. In Source Suppression Overview
Rule Category - The category in which the rule is defined. For more information about code analysis rule categories, see some useless link.