Lines Count

  • Thread starter Thread starter Bruce
  • Start date Start date
B

Bruce

Is there any mechanism in vs 2005 to have the IDE report the number of lines
of source code in a C# project either per file or preferably across an
entire project?

Thanks,
Bruce
 
Hi Bruce,

First of all, I would like to confirm my understanding of your issue. From
your description, I understand that you need to count the number of lines
of source code in a project or in a file. If there is any misunderstanding,
please feel free to let me know.

As far as I know, VS.NET doesn't provide such function for us to count the
row of code in a project. It can only show the line number in the IDE text
editor. You can enable it with the following steps:

1. Select Tools/Options from the main menu.
2. Select Text Editor/C#/General from the left treeview.
3. Check Line Number from the right pane.

If you need to count for the project code line number, you can try to find
some 3rd-party components to achieve this.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 
You're welcome, Bruce.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 
Back
Top