Is there a way to disable all Resharper warnings for a file or section of code with a single comment? I\'m trying to create some coding exercises for interviewing potential
According to this blog post on the JetBrains blog, in ReSharper 8 there will be a single comment that can disable resharper in a file.
It will be
// ReSharper disable All
Note: The "All" is case-sensitive, the rest is not.