I wrote an application in VB.NET and since I charge by the line, I would like to calculate how many lines I wrote. I have about 100 different Visual Basic files with my code. How do I count all the lines?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could do a regex search for a line-break char that isn’t followed by another linebreak (excluding blank lines)
Alternatively there’s this app http://cloc.sourceforge.net/ (I haven’t used it, I just found it)