We\'re using StyleCop in our C# projects. In some cases we\'d like to avoid the rules though. I know you can add //
in the beginning of the
This guy seems to have a good general ignore hack; he suggests putting this at the top of the file - tested and working with R#
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
//
//------------------------------------------------------------------------------
Handy for when you are just churning out a load of boilerplate to adhere to a mainly unimplemented interface, for example.