Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Something like FindBugs for .NET/C# [duplicate]

Tags:

c#

.net

findbugs

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.

like image 684
jitm Avatar asked Oct 20 '10 21:10

jitm


2 Answers

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).

like image 140
Mark Heath Avatar answered Oct 16 '22 09:10

Mark Heath


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

like image 23
Marty Avatar answered Oct 16 '22 08:10

Marty