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
The following worked for me.
Use the following to suppress the warnings:
#region No Resharper // All R# warnings are suppressed here #endregion