I have code I don't want used to calculate code coverage or code metrics 02 September 2011 Donovan Work (0) Problem: I have code that I don't want to be calculated in my code coverage results and/or my code metrics. Solution: Apply the GeneratedCodeAttribute, DebuggerNonUserCode or DebuggerHidden attributes to the specific code. Explanation: Genera... [More]