I know that I can access the cyclomatic complexity to my code in Visual Studio 2008 Team Explorer by right clicking and selecting \"Calculate Code Metrics\". I would like to
I use NDepend for stuff like that. You can create CQL queries in NDepend and execute them. Example:
SELECT METHODS WHERE CC > 8
returns the methods with a cyclomatic complexity greater than 8.