I am currently testing out Ndepend, and it gives me a warning that assemblies should be marked as CLSCompliant.

Our project is all C#, so it is not really needed.

What I am wondering is: are there any negative effects of marking a dll as clscompliant or should I just disable the warning?

Note I am not asking what CLSCompliant means that is covered here: what is CLSCompliant attribute in C#

link|improve this question

actually marking your assemblies is a suggestion for code improvement in "effective C#" by Bill Wagner - if you need arguments for your boss. see: amazon.com/Effective-Specific-Ways-Improve-Your/dp/… – yas4891 Aug 8 '11 at 13:03
feedback

3 Answers

up vote 3 down vote accepted

This is one of those subtle cases... CLS compliance is probably of most importance to library authors, who can't control who the caller is. In your case, you state "our project is all C#", in which case you are right: it isn't needed. It adds restrictions (for example, on unsigned types) which might (or might not) affect representing your data in the most obvious way.

So: if it adds no value to you whatsoever, then frankly: turn that rule off. If you can add it for free (no code changes except the attributes), then maybe OK - but everything is a balance - effort vs result. If there is no gain here, don't invest time.

If you are a library author (merchant or OSS), then you should follow it.

link|improve this answer
feedback

There are several C# features that are not CLS compliant, for example unsigned types. Since several languages are case insensetive, there may not be classes and members that are differ only by case, MyObject and myObject, and several other features. Thus, if you don't plan to work with other .Net languages there is no reson to mark you code as CLSComplient.

link|improve this answer
feedback

The only negative effects would be compiler errors when your code is marked as CLSCompliant, but it is not.

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.