I'm working on a code that have the following attributes on some of its methods:

[CLSCompliantAttribute(false)] 

How is it that when I build the code as is, I see that the compliance checking is being performed, and when I comment it out, it seems that the compliance checking is NOT being performed. I've expected the opposite behavior...

Thanks, Li

link|improve this question

What do you mean? – SLaks Nov 1 '10 at 17:31
Can you post your warning message? – max Nov 1 '10 at 17:36
feedback

1 Answer

up vote 2 down vote accepted

Adding [CLSCompliant(false)] marks the member you add it to as non-compliant.

If you mark the member as non-compliant, the compiler will not warn you if it isn't compliant. (Since you already said that it's not compliant)

If, however, the member is marked as compliant (either explicitly or indirectly from an assembly-level attribute), but it is in fact not compliant (eg, it takes a uint), the compiler will warn you. (Since the attribute is now lying about the member)

link|improve this answer
so, if I get the warning - does it mean that I have the attribute : [CLSCompliant(true)] somewhere in my code in a higher scope? – user429400 Nov 1 '10 at 17:33
@user: Which warning? – SLaks Nov 1 '10 at 17:35
1  
You probably have it at the assembly level. Look for [assembly:CLSCompliant(true)] in Properties/AssemblyInfo.cs – John Gietzen Nov 1 '10 at 17:36
feedback

Your Answer

 
or
required, but never shown

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