Why do I get, "Identifier 'Logic.DomainObjectBase._isNew' is not CLS-compliant"?
public abstract class DomainObjectBase
{
protected bool _isNew;
}
|
|
|||||
|
|
|
From the Common Language Specification:
If you look this up:
Basically, you can't start an identifier with an underscore - this violates CLS compliant on a visible (public/protected) field. |
||
|
|
|
|
The leading underscore concomitant with |
||||
|
|
|
It's the underscore. See this article. |
||
|
|
|
|
Because it start's with underscore. |
||
|
|
|
|
CLS-complaint identifier should not start with underscore. |
||
|
|
|
|
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:
OR, if you want to use 3.x and get rid of the private field:
|
||
|
|
|
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. |
||||
|
|
|
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:
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).
B. Set your whole assembly to be non CLS compliant.
C. Add an attribute just to your property.
D. Change the scope of the property so that it can not be seen outside the assembly.
|
|||
|
|