We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
打开搜索(ctrl+shift+f),
搜索解决方案中的所有文件(*.cs 或 *.vb),使用正则表达式
^
(行开头)。等待。
PS。
您可以使用
^.+$
过滤掉空行(@ssc-hrep3 建议)Open the search (ctrl+shift+f),
Search for all files in the solution (*.cs or *.vb), use regular expression
^
(line beginning).Wait.
PS.
you can filter out empty lines with
^.+$
(a @ssc-hrep3 suggestion)您还可以使用 DPack:
DPack 非常方便,但您只能将其用于解决方案统计:
You can also use DPack:
DPack is very handy but you can use it only for solution statistics:
使用 powershell 移动到包含项目文件的文件夹,然后输入命令,
将“cs”“vb”替换为要包含在计数中的文件扩展名。
Using powershell move to the folder containing your project files and enter the command
replace "cs" "vb" with file extensions you want to include in your count.
是的,
这是一个教程:
http://blogs.msdn.com/b/habibh/archive/2009/10/27/how-to-count-the-lines-of-code-loc -in-your-application-using-visual-studio.aspx
或者您可以使用像这样的专用工具:
http://code.msdn.microsoft.com/LOCCounter
Yes
Here is a tutorial:
http://blogs.msdn.com/b/habibh/archive/2009/10/27/how-to-count-the-lines-of-code-loc-in-your-application-using-visual-studio.aspx
Or you can use a dedicated tools like this one:
http://code.msdn.microsoft.com/LOCCounter