views:

65

answers:

3

Anyone know a good code analysis service or tool for vb.net? Like the one for c# with visual studio 2008 team edition or style cop for c#

Update: My bad ,I am only using the visual studio pro in my new work place,so I could not use the code analysis for visual studio 2008 team edition

+3  A: 

I believe that Code Analysis works on VB.NET code as well.


I just tested it, and it does work.

John Saunders
To expand on this, Code Analysis works on compiled assemblies, so should be language-agnostic.
itowlson
+2  A: 

FxCop seems reasonable.

Jay
A: 

Besides, you can use

NDepend http://www.ndepend.com

Gendarme from Mono. http://www.mono-project.com/gendarme

ReSharper http://www.jetbrains.com/resharper/

Lex Li