Tagged Questions
The cls-compliant tag has no wiki summary.
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
427 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
3answers
138 views
Any reason not to mark a DLL as CLSCompliant?
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 ...
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. ...
5
votes
4answers
1k views
C#: Nonzero-based arrays are not CLS-compliant
I am currently reading Albahari's C# 3.0 in a Nutshell and on pg. 241, whilst talking about Array indexing, he says this:
Nonzero-based arrays are not
CLS (Common Language ...
4
votes
4answers
67 views
What C# naming scheme can be used for Property & Member that is CLS compliant?
Consider the following code that is not CLS Compliant (differs only in case):
protected String username;
public String Username { get { return username;} set { username = value; } }
So i changed ...
4
votes
2answers
269 views
CLS-compliant alternative for ulong property
Background
I am writing a managed x64 assembler (which is also a library), so it has multiple classes which define an unsigned 64-bit integer property for use as addresses and offsets. Some are file ...
4
votes
2answers
1k views
Base type is not CLS-compliant, what reasons of this warning?
I have got warning from subject on one of my classes. Actually class is very simple, just an inheritor of my generic base type. Also I have some other inheritors from that generic class across the ...
3
votes
3answers
131 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
255 views
Can an assembly that includes a non-CLS-compliant reference be CLS-compliant?
I have an existing DLL that is not CLS-compliant that I reference from my own project. When I mark my assembly as CLS-compliant, I get compiler warnings that names in the referenced assembly are not ...
3
votes
1answer
453 views
Why isn't this CLS compatible?
I have the following Interfaces:
public interface ITemplateItem
{
int Id { get; set; }
String Name { get; set; }
String Text { get; set; }
int CategoryId { get; set; }
int Typ { ...
3
votes
4answers
555 views
Why should I write CLS compliant code?
I've found a lot of pages about CLS compliance.
I've understood that CLS compliance:
Is a way to guarantee different assembly compatibility.
Is a way to declare the high security code
Many ...
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
1answer
50 views
CS3016 - How do we get around this when working with Prism + MEF ExportModule?
[assembly: CLSCompliant(true)]
//CS3016: Arrays as attribute arguments is not CLS-compliant.
[ModuleExport(typeof(ModuleA), DependsOnModuleNames = new [] { "ModuleB" })]
public class ModuleA : ...
2
votes
2answers
57 views
CLS compliant attributes and array parameters
I have created an attribute that accepts a (params) array in its constructor.
internal class MyTestAttribute : Attribute
{
public MyTestAttribute (params Options[] options)
{
....
...
2
votes
1answer
137 views
Why is my function not CLS-compliant?
I'm getting the following warning message...
Return type of function 'ConnectionNew' is not CLS-compliant.
...for this function:
Public Function ConnectionNew(ByVal DataBaseName As String) As ...
2
votes
1answer
675 views
CA1014 Mark 'some.dll' with CLSCompliant(true) error message with StyleCop of VS2010
When I run StyleCop, I got this error message saying that I need to Mark the dll with CLSCompliant(true).
What is this? How can I set the Mark the dll with CLSCompliant(true)?
Error 4 CA1014 : ...
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
1answer
110 views
Why is my MEF usage not CLS-compliant?
When I compile my Silverlight application, all of the elements that are decorated with MEF attributes are warning of CLS-noncompliance. When I compile again, the warnings do not return, and my ...
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
41 views
ANTLR for CSharp and CLSCompliant attribute
I'm using ANTLR V3 to produce CSharp code for DSL language.
The produced code contain the attribute CLSCompliant on both laxer and parser classes which cause a warning to be generated because my ...
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
3answers
138 views
How to hide Non-CLS compliant code from projects using other languages?
This question is more out of curiosity than a project requirement or a problem.
I have a Non-CLS compliant code in one language (say C#), and I need to use it like that only in my current language ...
1
vote
1answer
357 views
c# disable CLS compliance checking
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 ...
1
vote
2answers
126 views
How can I disbale CLS compliance checking - c#
I want to disbale CLS complaiance checking.
I'm new in C#, so can you please tell me how to do it for:
The entire assembly
smaller scope, maybe one file or one class...
Thanks,
Li
1
vote
1answer
254 views
How can I convert arbitrary strings to CLS-Compliant names?
Does anyone know of an algorithm (or external library) that I could call to convert an arbitrary string (i.e. outside my control) to be CLS compliant?
I am generating a dynamic RDLC (Client Report ...
1
vote
2answers
389 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?
1
vote
4answers
708 views
LINQ to SQL Classes not CLS-Compliant?
I'm using LINQ to SQL as my data access layer for a new project. I have added my database tables to the designer and all is well.
Whenever I use one of these classes in a function, Visual Studio ...
1
vote
2answers
2k views
Reference Name case is not CLS Compliant
I have a .NET 3.5 C# project that has a namespace of SampleNamespace.Tools.Sample.
If I add an assembly called "Samplenamespace.Utils.Example" to my project I get the following warning:
...
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
148 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
144 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
1answer
48 views
CLS compat Public properties naming validation routine
Im working on a system that allows one to define data types (types that have only public properties) on the fly (undercovers using reflection.emit), i want my new types to also be CLS compliant, what ...
0
votes
2answers
60 views
How can I apply one or more attributes to all classes in a project?
Hi
How can I apply an attribute to all classes in a particular project?!
And is it enough to apply CLSCompliant attribute to just one class or do I have to apply to all classes?
Thanks for your ...
0
votes
1answer
266 views
CLS-Compliant issue
I have the following property defined. MyLibrary.PumpSignal is an enum as follows:
Public Enum PumpSignal As Integer
PumpOff = 0
PumpOn = 1
End Enum
Then I have another class with a ...
0
votes
2answers
451 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 ...
0
votes
1answer
381 views
Type of member is not CLS-compliant
Using Visual Studio 2008 and VB.Net:
I have a working web app that uses an ASMX web service which is compiled into its separate assembly. I have another class library project compiled as a separate ...
0
votes
4answers
592 views
interface not implemented error when signing C# assembly
I've been trying to sign an assembly and getting this error:
'Utils.Connection' does not implement interface member 'Interfaces.IConnection.BugFactory()'. 'Utils.Connection.BugFactory()' cannot ...
0
votes
2answers
564 views
How do I handle CLS-compliant within a Web Reference?
I am turning on [assembly: System.CLSCompliant(true)] inside the assemblies of my C# solution.
I am now getting a few warnings inside the generated code for a SharePoint Web Service.
Here is one ...