tags:

views:

51

answers:

3

Hello All, I need something like FindBugs for C#/.NET ...

Could you tell me where I can find something like this ?

Thanks.

+1  A: 

FxCop is a static analysis tool for .NET that has the ability to detect various possible bugs as well as advise you of good programming practices and Microsoft naming conventions. It seems like Microsoft have stopped development on the standalone FxCop tool now in favour of encouraging you to buy a version of Visual Studio with the static code analysis built in (which I think for VS2010 is the "Premium" edition and above).

Mark Heath
A: 

You might want to have a look at FxCop. It's probably the most popular static code analysis tool for .NET.

Marty Dill