What tools are there available for static analysis against C# code? I know about FxCop and StyleCop. Are there others? I've run across NStatic before but it's been in development for what seems like forever - it's looking pretty slick from what little I've seen of it, so it would be nice if it would ever see the light of day.

Along these same lines (this is primarily my interest for static analysis), tools for testing code for multithreading issues (deadlocks, race conditions, etc.) also seem a bit scarce. Typemock Racer just popped up so I'll be looking at that. Anything beyond this?

Real-life opinions about tools you've used are appreciated.

link|improve this question

47% accept rate
feedback

20 Answers

up vote 83 down vote accepted

Code violation detection Tools:

  • Fxcop, excellent tool by Microsoft. Check compliance with .net framework guidelines.(No longer available as a standalone download. It is now included in the Windows SDK and after installation can be found in Program Files\Microsoft SDKs\Windows\ [v7.1] \Bin\FXCop\FxCopSetup.exe)
  • Clocksharp, based on code source analysis (to C# 2.0)
  • Mono.Gendarme, similar to Fxcop but with an opensource licence (based on Mono.Cecil)
  • Smokey, similar to Fxcop and Gendarme, based on Mono.Cecil. No longer on development, the main developer works with Gendarme team now.
  • Coverity Preventâ„¢ for C#, commercial product
  • CAT.NET , visual studio addin that helps identification of security flaws

Quality Metric Tools:

  • NDepend, great visual tool. Useful for coupling and dependency studies.
  • Nitriq, free, can easily write your own metrics/constraints, nice visualizations.
  • RSM Squared, based on code source analysis
  • C# Metrics, using a full parse of C#
  • SourceMonitor, old tool EDIT a new version is out
  • Code Metrics, a Reflector add-in
  • Vil, old tool that doesn't support .NET 2.0

Checking Style Tools:

  • StyleCop, Microsoft tool ( run from inside of Visual Studio or integrated into an MSBuild project)
  • Agent Smith, code style validation plugin for ReSharper

Duplication Detection:

  • Simian, based on source code. Works with plenty languages.
  • CloneDR, detects parameterized clones only on language boundaries (also handles many languages other than C#)
  • Clone Detective a Visual Studio plugin. (It uses ConQAT internally)
  • Atomiq, based on source code, plenty of languages, cool "wheel" visualization
link|improve this answer
2  
See the MSDN page about FxCop: msdn.microsoft.com/en-us/library/bb429476%28VS.80%29.aspx "FxCop is an application that analyzes managed code assemblies (code that targets the .NET Framework common language runtime) and reports information about the assemblies, such as possible design, localization, performance, and security improvements." – Sarah Vessels Jul 1 '09 at 18:24
The FxCop link has been removed from the Microsoft site. Here is the FxCop 10.0 "download": microsoft.com/downloads/… – ulrichb Jun 23 '10 at 10:37
@ulrichb thanks, I'll update it. – Julien Hoarau Jun 23 '10 at 11:55
Is this Simian: harukizaemon.com/simian/index.html ? (you got broken link). Also it seems to be only .NET 1.1. – Theraot May 15 at 13:24
@Theraot Thanks, I changed the url. Concerning the .NET version, Simian can run on .NET 1.1 on Java 5 but that doesn't mean it detects duplication in other versions of .NET – Julien Hoarau May 15 at 15:03
feedback

ReSharper - Majorly cool C# code analysis and refactoring features... bit of a learning curve but well worth it.

link|improve this answer
4  
I find ReSharper can slow down large solutions. Now, I realize that one should never have very large solutions files, but sometimes the configuration of solution files is out of one's hand. I would like to see more people point out the performance trade-offs inherent in selecting ReSharper as a tool. – Umar Farooq Khawaja Jun 29 '10 at 7:02
feedback

NDepend looks pretty promising for doing static analysis. I haven't used it, but I've been meaning to download the free edition (not for long-term use on commercial projects)

I also like a DSM plugin that works with reflector, available here

link|improve this answer
feedback

I would strongly recommend NDepend, but be aware that this tool has A LOT of information so if you're going to use it, be prepared to spend some time watching the tutorial videos so you can get a good handle on what is going to be useful to you and what isn't.

link|improve this answer
feedback

Also see:

link|improve this answer
feedback

The wikipedia page, List of tools for static analysis may be useful here.

link|improve this answer
feedback

Uhm, I hate to start posting by pitching our own tool, but this is the kind of question I can answer well :)

CodeIt.Right is the static analysis tool we developed and it will correct the found violations too (along with lots of other features).

I hope you don't mind the post - I may be too excited about the tool bu I truly believe it is very useful.

link|improve this answer
feedback

I find the Code Metrics and Dependency Structure Matrix add-ins for Reflector very useful.

link|improve this answer
feedback
  • Gendarme is an open source rules based static analyzer (similar to FXCop, but finds a lot of different problems).
  • Clone Detective is a nice plug-in for Visual Studio that finds duplicate code.
  • Also speaking of Mono, I find the act of compiling with the Mono compiler (if your code is platform independent enough to do that, a goal you might want to strive for anyway) finds tons of unreferenced variables and other Warnings that Visual Studio completely misses (even with the warning level set to 4).
link|improve this answer
feedback

Coverity has releases a C# product.

http://www.coverity.com/html/coverity-prevent-for-c%23.html

link|improve this answer
feedback

Aside from the excellent list by madgnome, I would add a duplicate code detector that is based off the command line (but is free):

http://sourceforge.net/projects/duplo/

link|improve this answer
feedback

Klocwork has a static analysis tool for C#: http://www.klocwork.com

link|improve this answer
Our company bought that. In the range of $30K for us – Dan dot net Mar 8 '11 at 21:13
feedback

Semantic Designs (my company) provides the following C# static analysis tools:

  • C# Metrics: Computes standard metrics (Cyclomatic, Halstead, conditional nesting, ...) for C#
  • CloneDR: Finds exact and near-miss duplicates in large C# software systems
  • SmartDifferencer: Compares two C# files to determine minimal "diff" in terms of language structures (variables, expressions, statements, blocks) and meaningful editing operations (insert, delete, move, copy, rename)

See our C# Tools for details. The site describes other C# tools for dynamic analysis, also.

link|improve this answer
-1, and almost flagged as spam. Please don't recommend your company's products without saying that it's your company! – John Saunders May 1 '10 at 2:58
2  
The question was, "What tools are there available for static analysis against C# code?" I answered the question, by simply stating thier existence; there are no superlative adjectives involved and specifically no recommendations. I assume that StackOverflow people are competent to make their own judgements. – Ira Baxter 1 hour – Ira Baxter May 1 '10 at 4:32
feedback

Have you seen CAT.NET?

From the blurb -

CAT.NET is a binary code analysis tool that helps identify common variants of certain prevailing vulnerabilities that can give rise to common attack vectors such as Cross-Site Scripting (XSS), SQL Injection and XPath Injection.

I used an early beta and it did seem to turn up a few things worth looking at.

link|improve this answer
feedback

If you are looking for a true source code analysis tool (the only one I know that scans un-compiled source code), which handles both quality and security vulnerability detection, I recommend checking out a tool called CXSuite by Checkmarx - http://www.checkmarx.com. It handles C# and all major coding languages.

link|improve this answer
feedback

Simian can be used to find duplicate lines of code, that can help you refactor quite a bit. It's written in Java but you can evaluate C# files.

link|improve this answer
feedback

I would advise NDepend too.

See the list of features here http://www.NDepend.com/Features.aspx :
- Code Query Language (CQL)
- Compare Builds
- 82 code metrics
- Manage Complexity and Dependencies
- Detect Dependency Cycles
- Harness Test Coverage Data
- Enforce Immutability and Purity
- Warnings about the health of your Build Process
- Generate custom report from your Build Process
- Diagrams
- Facilities to cope with real-world environment

link|improve this answer
feedback

Axivion Bauhaus Suite is a static analysis tool that works with C# (as well as C, C++ and Java).

It provides the following capabilities:

  • Software Architecture Visualization (inlcuding dependencies)
  • Enforcement of architectural rules e.g. layering, subsystems, calling rules
  • Clone Detection - highlighting copy and pasted (and modified code)
  • Dead Code Detection
  • Cycle Detection
  • Software Metrics
  • Code Style Checks

These features can be run on a one-off basis or as part of a Continuous Integration process. Issues can be highlighted on a per project basis or per developer basis when the system is integrated with a source code control system.

link|improve this answer
feedback

FYI - A new Typemock Racer build was recently released.

Typemock Racer helps find possible deadlocks in your code.

link|improve this answer
feedback

Optimyth Software has just launched a static analysis service in the cloud www.checkinginthecloud.com. Just securely upload your code run the analysis and get the results. No hassles.

It supports several languages including C# more info can be found at wwww.optimyth.com

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.