Is there a tool or something else to count the number of lines in a specific C# project? Just out of curiosity…
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.
I believe there are tools, but I find it easier to just use the Find in Files option and use this regex:
That regex is from here, which also shows how to search for it. It will return a number of matching lines (i.e. the number of lines in your code)