Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FindBugs for .NET [closed]

In Java is this nice tool called FindBugs. Is there something similar in .Net?

like image 927
Ludwig Wensauer Avatar asked Dec 29 '08 12:12

Ludwig Wensauer


People also ask

Is FindBugs an open source?

FindBugs is an open-source static code analyser created by Bill Pugh and David Hovemeyer which detects possible bugs in Java programs. Potential errors are classified in four ranks: (i) scariest, (ii) scary, (iii) troubling and (iv) of concern.

How do you run FindBugs?

Direct invocation of FindBugs. The preferred method of running FindBugs is to directly execute $FINDBUGS_HOME /lib/findbugs. jar using the -jar command line switch of the JVM (java) executable.

What is the difference between FindBugs and SpotBugs?

Find bugs in Java Programs It is free software, distributed under the terms of the GNU Lesser General Public License. SpotBugs is a fork of FindBugs (which is now an abandoned project), carrying on from the point where it left off with support of its community. Please check the official manual for details.

What is com Google Code FindBugs?

FindBugs is a defect detection tool for Java that uses static analysis to look for more than 200 bug patterns, such as null pointer dereferences, infinite recursive loops, bad uses of the Java libraries and deadlocks.


1 Answers

FxCop and StyleCop will advise on usage.

For actual bugs, perhaps PEX? There was a PDC video, too.

like image 59
Marc Gravell Avatar answered Oct 04 '22 08:10

Marc Gravell