utility to count code lines?

  • Thread starter Thread starter tommcd24
  • Start date Start date
T

tommcd24

Does anyone know of a utility or VS add-in to count code lines in a
project or solution? I just had to provide 50 pages of code for
copyright and had initially thought that would be nearly the entire
program only to discover that I had over 60 pages of code in just two
classes.

So now I'm curious how many lines of code are in the project...

Thanks in advance for any information.
 
My MZ-Tools add-in (below) has a Statistics feature which shows the number
of total lines, code lines, blank lines, comment lines, ratios (%), classes,
procedures, controls and so on.

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio
You can code, design and document much faster:
http://www.mztools.com
 
You can count the total number of lines of code in VS 2005 without an
add in:

1) Select Find in Files from the edit menu
2) Find what: *
3) Look in: Entire Solution
4) Use: Wildcards
It will display the total number at the end of the find window.
 
Back
Top