Doguhan Uluca
Doguhan Uluca

Reputation: 7323

Is there a library out there to analyze VB.Net code complexity from my C# code?

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

Answers (1)

Heiko Hatzfeld
Heiko Hatzfeld

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

Related Questions