Tagged Questions

30
votes
3answers
3k views

Why are unsigned int's not CLS compliant

Why are unsigned int's not CLS compliant. I start to think type-specification is just for performance, and not for correctness.
19
votes
3answers
476 views

Is the new feature of C# 4.0 - “Optional Parameters” CLS-Compliant?

This new feature is really convenient. Lately I read the document of the "Microsoft All-In-One Code Framework", and it mentions that "Optional Parameters" is not CLS-Compliant. So I tested it by ...
11
votes
9answers
8k views

Why is this name not CLS Compliant?

Why do I get, "Identifier 'Logic.DomainObjectBase._isNew' is not CLS-compliant"? public abstract class DomainObjectBase { protected bool _isNew; }
7
votes
6answers
429 views

Why does C# include programming constructs that are not CLS-compliant?

It seems strange that the flagship language of .NET would include programming constructs that are not CLS-compliant. Why is that? Example (from here): Two or more public / protected / protected ...
5
votes
3answers
146 views

Why is my code not CLS-compliant?

I've got errors when I build my project: Warning as Error: Type of 'OthersAddresses.AddresseTypeParameter' is not CLS-compliant C:...\Units\OthersAddresses.ascx.cs public ...
5
votes
2answers
731 views

'Arrays as attribute arguments is not CLS-compliant' warning, but no type information given

When compiling my solution, I get several warnings of the following: warning CS3016: Arrays as attribute arguments is not CLS-compliant No other information on what type is not compliant is given. ...
3
votes
3answers
133 views

Why my Identifiers is not CLS-compliant?

I have a some class, which contains three fileds: protected bool _isRunning = false; protected readonly ParameterCollection _parameters = null; protected readonly ParameterCollection ...
3
votes
1answer
168 views

Is warning CS3006 valid in this case?

The code below generates a warning CS3006 "Overloaded method MyNamespace.Sample.MyMethod(int[])' differing only in ref or out, or in array rank, is not CLS-compliant". Is this warning valid, i.e. is ...
2
votes
5answers
101 views

Is it a good idea to compare double.MaxValue for equality?

Same question can be asked of float... or of MinValue. I am thinking of using it as a special value. Will i see bugs due to precision? I don't expect to do arithmetic with these numbers, just set ...
2
votes
3answers
70 views

Pattern for naming CLS compatible alternative Properties

If i have a property like this [CLSCompliant(false)] public uint Something { ... } and want to write an alternative, i can not just write an overload as i would do for methods. But how should i ...
2
votes
3answers
134 views

Possibility of language data type not mapped to shipped .NET Framework?

Does anybody know of a managed programming language implemented on .NET that contains a specialized data type that is not mapped through to the Common Type System/FCL/BCL or one that does not have a ...
2
votes
3answers
432 views

Cleaning up C# compiler warning CS3016: Arrays as attribute arguments is not CLS-compliant [closed]

Possible Duplicate: ‘Arrays as attribute arguments is not CLS-compliant’ warning, but no type information given I have some code, which generates this warning in several places. ...
1
vote
1answer
40 views

Justification for CLS specification : The accessibility of the property and of its accessors must be identical

Was just running through the ruleset of Parasoft's code analysis tool. public int testProperty // violation { private get // not matching property accessibility { return _testValue; } set { ...
1
vote
2answers
391 views

Marking all classes in a project CLS Compliant

If I have a project and I mark it as <Assembly: CLSCompliant(True)> Do I need to put CLSCompliant(True) before every class in the project, or are they all defaulted to CLSCompliant?
0
votes
1answer
31 views

Implications of protected variable starting with _ and CLSCompliant attribute

We have some C# code where there are protected variables that have been named with underscores protected string _name; public string Name { get { return _name; } set { ...
0
votes
1answer
150 views

CA1026 — Can this message be suppressed if an alternate, CLS Compliant method is supplied in place?

According to CA1026: Default parameters should not be used I'm not supposed to use default parameters. MSDN says not to suppress the message: Do not suppress a warning from this rule. ...
0
votes
1answer
147 views

Proxy class generated from WSDL is having CLS compliant error

I have tried to generate a proxy class from WSDL file given using .net 2003. When i tried to add this class file to my project which is in .net 2003, Its giving error in proxy class like "Identifier ...
0
votes
2answers
453 views

base type is not CLS-compliant in Third Party Control

I have a control that I purchased. When I tried to inherit from the control I get this message: Warning: 'MyNamespace.MyFile': base type 'Mooseworks.UI.MwTextBox' is not CLS-compliant Is there any ...