Tagged Questions

Microsoft's free static analysis tool for analyzing .NET managed code assemblies.

learn more… | top users | synonyms

27
votes
6answers
5k views

Stylecop vs FXcop

Has Stylecop superseded FXcop? Which product should we be using with Visual Studio 2008?
24
votes
4answers
5k views

FxCop for .NET 4.0

I know Visual Studio 2010 has a new Code Analysis tool built in, but that is only for the premium and ultimate editions. From what I can see the latest FxCop supports .NET 3.5 SP1. Searching I ...
22
votes
5answers
5k views

How to get the FxCop custom dictionary to work?

How is it possible to get the FxCop custom dictionary to work correctly? I have tried adding words to be recognised to the file 'CustomDictionary.xml', which is kept in the same folder as the FxCop ...
21
votes
3answers
15k views

Visual Studio Code Analysis vs StyleCop + FxCop

I used previously StyleCop + FxCop on my Visual Studio's projects. But now I am testing Visual Studio Code Analysis tool, which is easier to integrate into MSBuild, and I have found that this tools ...
20
votes
6answers
3k views

Why is it considered bad to expose List<T>?

According to FXCop, List should not be exposed in an API object model. Why is this considered bad practice?
19
votes
10answers
5k views

Which are the “must follow” FxCop rules for any C# developer?

I'm planning to start using FxCop in one of our ongoing project. But, when i tried it with selecting all available rules, it looks like I have to make lots of changes in my code. Being a "team member" ...
15
votes
8answers
1k views

Parameter naming: filename or fileName?

I try to be grammatically correct in my naming*. I've always used filename instead of fileName. The java convention also seems to use this, but FxCop prefers fileName. There's a discussion on ...
14
votes
2answers
1k views

FxCop: Compound word should be treated as discrete term

FxCop wants me to spell Username with a capital N (i.e. UserName), due to it being a compound word. However, due to consistency reasons we need to spell it with a lowercase n - so either username or ...
14
votes
5answers
752 views

Why does FxCop think initializing fields to the default value is bad?

When assigning a defualt default-value to a field (here false to a bool), fxcops says : Resolution : "'Bar.Bar()' initializes field 'Bar.foo' of type 'bool' to false. Remove this ...
14
votes
5answers
2k views

Exclude complete namespace from FxCop code analysis?

Is it possible to exclude a complete namespace from all FxCop analysis while still analyzing the rest of the assembly using the SuppressMessageAttribute? In my current case, I have a bunch of classes ...
13
votes
9answers
1k views

What's the proper naming convention for a property 'ID' : ID or Id?

Pretty simple question: When i have a persistable object, it usually has a property called ID (for abstract classes). So .. is the naming convention ID or Id? eg. public int ID { get; set; } or ...
12
votes
6answers
3k views

Why/when should you use nested classes in .net? Or shouldn't you?

In Kathleen Dollard's recent blog post, she presents an interesting reason to use nested classes in .net. However, she also mentions that FxCop doesn't like nested classes. I'm assuming that the ...
12
votes
4answers
3k views

Excluding FxCop rule in source

In a project I'm working on FxCop shows me lots of (and I mean more than 400) errors on the InitializeComponent() methods generated by the Windows Forms designer. Most of those errors are just the ...
11
votes
3answers
4k views

FxCop 1.36 is gone!

I just wanted to download FxCop 1.36 but I can't find it in the internet. A few days ago FxCop 10 came out for Windows 7 but I need the old Version. The file is gone on the MS server and everybody ...
11
votes
3answers
2k views

How to integrate FxCop and VS 2008?

If this is duplicated question, please point me to the proper link and I'll delete this question. I know that in VS Team System I can use Code Analysis but I'm using VS Professional. Can you tell me ...
10
votes
3answers
5k views

How to enable Code Analysis in Visual Studio 2010 Professional?

I can see that we can enable code analysis in Visual Studio Team Systems. But i am using Visual Studio 2010 Professional. Do we have any option to enable code analysis in this version or can we ...
10
votes
5answers
317 views

Is fxcop a valuable/effective tool for improving code quality?

I have a large high quality c# framework codebase that I nevertheless want to try to improve. Is fxcop an effective tool for improving .NET frameworks? I know Microsoft uses the tool internally, ...
10
votes
7answers
577 views

How to manage FxCop overwhelming reports

I've recently started using it. However, after running it against one of my company's largest project. It turns up mountains of problems. The list of problems was so overwhelming it would take days ...
8
votes
6answers
2k views

How do I extend a WinForm's Dispose method?

I am getting this warning from FxCop: "'RestartForm' contains field 'RestartForm.done' that is of IDisposable type: 'ManualResetEvent'. Change the Dispose method on 'RestartForm' to call Dispose ...
8
votes
7answers
758 views

FxCop / StyleCop for Delphi?

Does anyone know of an equivalent to FxCop/StyleCop for Delphi? I would really like to get the automatic checking of style, etc. into Continuous Integration.
8
votes
2answers
1k views

Are there any good workarounds for FxCop warning CA1006?

I am having trouble with FxCop warning CA1006, Microsoft.Design "DoNotNestGenericTypesInMemberSignatures". Specifically, I am designing a ReportCollection<T> class that inherits from ...
7
votes
1answer
133 views

Nested using statements and Microsoft code Analyses

Recently I switched on additional code analyses rules. To my surprise I saw a violation in a place I was always considering as the best practice. If I have two nested disposables I am putting two ...
7
votes
3answers
413 views

How to prevent FxCop from analyzing auto-generated code?

FxCop gives me an error while checking code behind of edmx model. How to prevent FxCop from analyzing auto generated code or at least Entity Framework generated classes ?
7
votes
1answer
222 views

Why “Properties that return arrays are prone to code inefficiencies”?

I have a piece of code which deals with customers stored in database. There is an object Customer, and it has, among other, two properties of type byte[]: one property for password salt, the second ...
7
votes
6answers
814 views

Should we start using FxCop and/or StyleCop in a mature project?

We have 3 years old solution (.sln) with about 20 projects (.csproj). It is reasonable to start using FxCop and/or StyleCop? Maybe we should use it for several small projects first but not for whole ...
7
votes
4answers
476 views

How do you start with FxCop on legacy code?

Does anyone have any experience of introducing FxCop to legacy code? We would like to have our build fail if anyone introduces code that violates rules. But for the time being, this is impossible, as ...
7
votes
4answers
1k views

Code analysis/FxCop in VS2008

FxCops is something new to me, but as always I would like to get to know the new things.. From what I've read, FxCops is already included in VS2008. I guess it's the "Code Analysis" function. Whenever ...
7
votes
2answers
2k views

Best way of using List<T> and exposing Collection<T>

I must implement a web service which expose a list of values (integers, custom classes etc). My working solution returns a List<T>, and according to FxCop it is better to return a ...
7
votes
5answers
4k views

Is there a custom FxCop rule that will detect unused PUBLIC methods?

I just tried FxCop. It does detect unused private methods, but not unused public. Is there a custom rule that I can download, plug-in that will detect public methods that aren't called from within ...
6
votes
2answers
98 views

Prevent .NET code from calling particular methods?

Is there a way to create compile time errors if a certain method is called? As an example, what I'd like to do is prevent code in a certain project from calling ...
6
votes
1answer
156 views

How to implement generic IEnumerable or IDictionary to avoid CA1006?

Out of curiosity i would like to know how to best implement a class that could be used to avoid the CA1006 warning CA1006 : Microsoft.Design : Consider a design where 'IReader.Query(String, ...
6
votes
2answers
163 views

Determining if a method calls a method in another assembly containing a new statement and visa-versa

I want to write a rule that will fail if an object allocation is made within any method called by a method marked with a particular attribute. I've got this working so far, by iterating up all ...
6
votes
1answer
135 views

.NET naming convention for conversion methods: ToType() or AsType()?

Is there any semantic difference between ToXXXX conversion methods and AsXXXX conversion methods in the .NET framework? Examples of such methods are Object.ToString and ...
6
votes
4answers
542 views

What rule do you wish FxCop/Gendarme had?

What definable static code checking rule do you wish to see added to FxCop and/or Gendarme? Why to do you wish to see the rule added, e.g what are the benefits etc? How could your rule be ...
6
votes
3answers
155 views

Automatically verify some threading restrictions? (C#)

Our codebase has a lot of threading restrictions encoded in comments - such as: This class is thread-safe (all public methods may be safely accessed from any thread) Must hold a lock on "xyz" to ...
6
votes
4answers
324 views

Any ideas on how to write a static analysis rule (FXCop) to ensure that event delegates are removed

We have been going through a big memory leak analysis and have found one of the contributing factors has been the non removal of delegates on events causing objects to not be GCed quickly enough (or ...
5
votes
4answers
166 views

CA1819: Properties shouldn't return arrays - What is the right alternative?

Well, I encountered this FxCop rule before and wasn't really content with how to solve violations (thread1, thread2). I now have another case where I need to correct violations of the CA1819 kind. ...
5
votes
1answer
117 views

Passing a byte[] around

A third-party generated proxy that we use exposed the BLOB data type as a byte[], and we then expose this value through code generation as follows: public byte[] FileRawData { get { return ...
5
votes
1answer
441 views

CA2000: object not disposed along all exception paths

Although topic has been discussed here before, but the proposed solutions don't seem to work.. I have a button-click-callback method in my form application, that shows a folder picker dialog: ...
5
votes
4answers
2k views

Doing .NET 4.0 static code analysis (FxCop) with VS 2010 Professional

I have VS 2010 Professional (which, unlike Premium, does not include access to Code Analysis configuration within the IDE), and a C# 4 solution containing many-dozen projects. I want to do static code ...
5
votes
2answers
274 views

How to share FxCop rules amongst all developers?

All our developers are using VS2010 professional so code analysis is not available. I want them to use FxCop to analyze the code before checking in. I have gone through the rules and disabled a bunch ...
5
votes
2answers
512 views

CA1026 (all parameters should have default values) and extension methods

Premise When using code analysis (or fxCop) with C# optional parameters you can get a warning of CA1026. The short reason1 for this is not suppling all parameters with a default value. The ...
5
votes
3answers
2k views

How to run .NET 4 code analysis on build server

On a Windows Server 2003 R2 with .NET 4 SDK but without Visual Studio 2010, I have tried building a Visual Studio 2010 solution with msbuild MySolution.sln /p:RunCodeAnalysis=true but that fails. ...
5
votes
3answers
440 views

Visual Studio Code Analysis Rule - “Do not expose generic lists”

Do not expose generic lists IF all my methods, need to expose a collection, then I need to user the Linq Extension .ToList(), almost everywhere I need to use lists, or user Collections in all my ...
5
votes
4answers
381 views

Why is FxCop warning about an overflow (CA2233) in this C# code?

I have the following function to get an int from a high-byte and a low-byte: public static int FromBytes(byte high, byte low) { return high * (byte.MaxValue + 1) + low; } When I analyze the ...
5
votes
5answers
510 views

Overriding Object.Equals() instance method in C#; now Code Analysis / FxCop warning CA2218: “should also redefine GetHashCode”. Should I suppress this in my case?

I've got a complex class in my C# project on which I want to be able to do equality tests. It is not a trivial class; it contains a variety of scalar properties as well as references to other objects ...
5
votes
3answers
758 views

Creating a readable FxCop report

Is there a good tool that can convert the XML output of FxCop into something that can be put into a Word document? I'd prefer not to write an XML-FO XSLT transform, maybe someone did something like ...
5
votes
2answers
522 views

custom static code analysis rules in fxcop or stylecop?

if writing my own static code analysis rules (for C# code), what are the pros and cons of using stylecop vs fxcop? is one more appropriate for certain type of analysis than the other? or is the ...
5
votes
3answers
502 views

Should I use FxCop and why?

I'm working on a project in C# .net and WPF. We're using StyleCop to help bring a consistent style to the project, and after disabling some rules we're quite satisfied with it. However, I've heard ...
5
votes
3answers
448 views

fxcop custom rules - Avoid having more than one class per file

as fxcop is an assembly inspector, is it possible to create a custom rule that check if there's more than one class per file ? If yes, how to do that ? Thanks for your help

1 2 3 4 5 7