0

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.

Doguhan Uluca
  • 6,933
  • 4
  • 38
  • 51

1 Answers1

1

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

Heiko Hatzfeld
  • 3,197
  • 18
  • 15