Number of method calls NOMC Total number of method calls within a method. It is calculated by counting all the method calls (whether they are remote or not). Method calls inside a catch blok or a finally block are also considered. Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 2 Number of Parameters NOP Total number of parameters of a method. If the number of parameters can't be calculated, -1 is assigned Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 0 Number of Local Variables NLV Total number of local variables of a method. It is calculated by counting the number of variables defined within the method scope. Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 1 Lines of Code NCNB (no comment no blank) NCNB Total lines of code of a method. Blank and commented lines are not considered. The first line counted is the signature of the method. Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 7 Comment Lines CL Same as CL of a class. It is calculated by considering all the comments lines of the class Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 1 Comment Ratio CR Percentage of commented lines of a method. Formula: CL (comment lines) over LOC Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 0,111111111111111 True Comment Ratio TCR Percentage of commented lines over the total non-commented lines of a method. Formula: CL (comment lines) over (LOC - CL) Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 0,125 Cyclomatic Complexity CC Ciclomatic complexity can be defined as the number of binary decisions defined in the control flow. Note: In c# binary decisions are the following: if, while, for, foreach, case, catch, AND and OR . Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 1 Number of For Sentences EXECFor Total number of for or foreach sentences of a method. It is calculated by counting the number of for and foreach sentences of a method. Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 0 Number of While Sentences EXECWhile Total number of while or do while sentences of a method. It is calculated by counting the number of while and do while sentences of a method. Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 0 Number of If Sentences EXECIf Total number of if or elseif sentences of a method. It is calculated by counting the number of if and elseif sentences of a method. Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 0 Number of Switch Sentences EXECSwitch Total number of switch sentences of a method. It is calculated by counting the number of switch sentences of a method. Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 0 Number of Exec Sentences EXEC Total number of executable sentences of the method. Executable sentences are C# sentences. Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 0 Lines of Code (method) LOC Same as LOC of a class. It is calculated by counting the number of lines of code of the method. Method CodeWalker() CodeWalkerAddInCS.CodeWalker.CodeWalker() C:\Documents and Settings\Juan\Escritorio\ExtendIDE\AddInsAndMacros Code\CodeWalkerAddInCS\CodeWalker.cs 18 9