Reputation: 7323
Given VB.Net code in a string, is there a library (or a command line tool) out there that could calculate Cyclomatic Complextiy and LOC? This has to be done within my C# code.
Thanks.
Upvotes: 0
Views: 263
Reputation: 3197
There is Refactor!, which does supply some extensibility and also supplys the mesurements (And an extesibility point)
Besides that, there is also NDepend, which allows you to query your code for such infos: http://www.ndepend.com/Features.aspx
Upvotes: 1