9

Possible Duplicate:
FindBugs for .Net

I need something like FindBugs for C#/.NET ...

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

Thanks.

Community
  • 1
  • 1
jitm
  • 2,569
  • 10
  • 40
  • 55

2 Answers2

10

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
  • 48,273
  • 29
  • 137
  • 194
1

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

Marty
  • 7,464
  • 1
  • 31
  • 52
  • You can use the SonarQube static code analysis tool for analysing your source code without execting them and find potential vulnerabilities, bug and security threats. – dush88c Oct 25 '17 at 04:09