Why do I get, "Identifier 'Logic.DomainObjectBase._isNew' is not CLS-compliant"?

public abstract class DomainObjectBase
{
   protected bool _isNew;
}
link|improve this question

8  
You probably should not be marking non-private members with an underscore anyway. I know that everyone has their own style, but others will almost certainly think that the field is private out of convention. – Ed S. Jul 28 '09 at 17:25
feedback

9 Answers

up vote 27 down vote accepted

From the Common Language Specification:

CLS-compliant language compilers must follow the rules of Annex 7 of Technical Report 15 of the Unicode Standard 3.0, which governs the set of characters that can start and be included in identifiers. This standard is available from the Web site of the Unicode Consortium.

If you look this up:

That is, the first character of an identifier can be an uppercase letter, lowercase letter, titlecase letter, modifier letter, other letter, or letter number. The subsequent characters of an identifier can be any of those, plus non-spacing marks, spacing combining marks, decimal numbers, connector punctuations, and formatting codes (such as right-left-mark). Normally the formatting codes should be filtered out before storing or comparing identifiers.

Basically, you can't start an identifier with an underscore - this violates CLS compliant on a visible (public/protected) field.

link|improve this answer
feedback

The leading underscore concomitant with _isNew being visible (i.e., not private).

link|improve this answer
9  
+1 But you need to include the fact that the member is non-private which, along with the leading underscore, makes the member's name not CLS-Compliant. – Andrew Hare Jul 28 '09 at 15:57
feedback

CLS Compliance is to do with interoperability between the different .Net languages. The property is not CLS compliant because it starts with an underscore and is public (Note: protected properties in a public class can be accessed from outside the assembly). Although this will work if the property is accessed from C# it may not if it is accessed from other .Net languages that don't allow underscores at the start of property names, hence it is not CLS-Compliant.

You are getting this compiler error because somewhere in your code you have labelled your assembly as CLS compliant with a line something like this:

[assembly: CLSCompliant(true)]

Visual Studio includes this line in the AssemblyInfo.cs file which can be found under Properties in most projects.

To get around this error you can either:

A. Rename your property (recommended).

 protected bool isNew;

B. Set your whole assembly to be non CLS compliant.

 [assembly: CLSCompliant(false)]

C. Add an attribute just to your property.

 [CLSCompliant(false)]  
 protected bool _isNew;

D. Change the scope of the property so that it can not be seen outside the assembly.

 private bool _isNew;
link|improve this answer
So, when you have a public property with a protected variable, what's the best convention? – Computer Linguist Aug 15 '11 at 14:46
feedback

The underscore causes the problem. Common practice is that the underscore is reserved for private fields. protected / public members should be properly cased and named.

For example:

public abstract class DomainObjectBase{   
   private bool _isNew;
   protected bool IsNew { get { return _isNew; } set { _isNew = value;} }
}

OR, if you want to use 3.x and get rid of the private field:

public abstract class DomainObjectBase{   
   protected bool IsNew { get; set; }
}
link|improve this answer
Thanks! I'd mark this as the 2nd best answer if I could. – MatthewMartin Jul 28 '09 at 16:25
feedback

It's the underscore. See this article.

link|improve this answer
feedback

Because it start's with underscore.

link|improve this answer
feedback

CLS-complaint identifier should not start with underscore.

link|improve this answer
feedback

The leading _ is non-CLS compliant

Microsoft StyleCop will analyze your code, and provide links to the relevent documents explaining why it is not CLS compliant.

link|improve this answer
I like the idea of StyleCop, but its rules conflict with FxCop rules, Resharper's reformatter and Visual Studio reformatter. – MatthewMartin Jul 28 '09 at 16:22
StyleCop and FxCop are both produced by Microsoft (although by different product teams) however I believe that StyleCop is the later, and therefore more preferred one if you wish to use a "Microsoft" code style. – Frozenskys Jul 28 '09 at 16:32
feedback

and what's wrong if it is throwed from a typed dataset with a class created in temporary asp files folder?

Public Property _alias() As String

link|improve this answer
Is this an answer to my old question or a new question? I think you have a new question. You will get attention if you post a new question. This "answer" will almost certainly get no response. Except from me. – MatthewMartin Oct 31 '11 at 15:28
It was a new question, but i see that the problem is because it is public and most be private. – Piyey Dec 19 '11 at 23:27
feedback

Your Answer

 
or
required, but never shown

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