The CLS (Common Language Specification) is a set of constraints on APIs and a complementary set of requirements on languages. If a library is CLS-compliant (i.e. adheres to all the constraints), then any CLS-compliant language can use that API. Conversely, a CLS-compliant language is guaranteed to ...

learn more… | top users | synonyms

3
votes
1answer
139 views

Why is my class not CLS-compliant?

This really baffles me. I've tried removing the readonly, changing names.. What am I doing wrong here? public abstract class CatalogBase<T> where T : class { protected readonly String ...
0
votes
1answer
54 views

Class is CLS Compliant to .NET but not in Mono

I had to build my own Version class. In .NET it's CLS Compliant but in Mono its not for some reason. Any ideas why? [Serializable] public class Version : ICloneable, IComparable, ...
1
vote
0answers
69 views

CLS Compliance issue in vb.net

Can someone help me understand what is not CLS Compliant about this simple class? I get the warning that my derived class is not cls compliant because it inherits from the class below, which is not ...
3
votes
1answer
83 views

Are there any non CLS compliant .NET languages in common use?

Are there any non CLS compliant .NET languages in common use these days? It looks like every managed language that ships out of the box with VS2012 supports unsigned integer types, so practically ...
7
votes
1answer
198 views

Why is overloaded method differing in ref only CLS compliant

Common Language Specification is quite strict on method overloads. Methods are allowed to be overloaded only based on the number and types of their parameters, and in the case of generic methods, ...
0
votes
3answers
58 views

What could go wrong if we don't use CLS?

I'm writing a framework, and we want it to be available from C#,C++, VB. We are not stricted to any other languages for now. But we have some problems in using CLS (we have to use unsign's etc.). Can ...
0
votes
0answers
48 views

mshtml and CLS-compliance

I am witnessing some odd behaviour with mshtml and CLS-compliance. I have an assembly marked CLSCompliant(true). This assembly does not expose any types from mshtml publicly. I can make the code ...
0
votes
1answer
99 views

Using non-cls compliant types in abstract methods

I have an external assembly that I use, and for whatever reason it does not specify CLS Compliance. So, this causes a lot of my code to be marked as non-cls compliant. The problem I'm running into is ...
0
votes
1answer
110 views

ASP.net build error: Identifier '__ASP' is not CLS-compliant

i am getting error when building an ASP.net web-site: Identifier '__ASP' is not CLS-compliant Nowhere in my code is there the identifier __ASP. i know why __ASP is not CLS-compliant (it ...
1
vote
0answers
115 views

How to fix CLS-Compliant in autogenerated XSD code

We have a data set and one of the columns is a VB keyword. The generated code automatically put an underscore in front of it for the property name in *.designer.vb. This is giving a warning for ...
2
votes
0answers
218 views

I need other syntax for RDLC Expression “ =Fields!xxx.Value” where xxx contains dot(.)

I am generating report dynamically. I have two tables User and Branch, and both have column name 'NAME'. So I use 'User.Name' and 'Branch.Name' as ColumnName in DataTable and bind it to RDLC using ...
0
votes
2answers
233 views

Assembly code not working with nasm

i am learning assembly as part of my course. This code is to clear screen and then type 4529. It is quite old-school style, though our teacher explains things very well so i will stick with this style ...
0
votes
2answers
182 views

Why is this not cls-compliant?

From what I've been reading online, if the field is private it can start with a leading _. However when I do the following it complains? Is it because I'm returning the private field? Doesn't make ...
6
votes
3answers
1k 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 ...
2
votes
1answer
156 views

ANTLR for C# and CLSCompliant attribute

I'm using ANTLR V3 to produce C# 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 project ...
4
votes
4answers
95 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 ...
2
votes
1answer
126 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 : ...
0
votes
1answer
81 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 { ...
1
vote
1answer
55 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 { ...
4
votes
2answers
565 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) { .... ...
3
votes
3answers
663 views

Why my Identifiers is not CLS-compliant? [duplicate]

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

Will using of non CLS compliant types in a language which doesn't support unsigned cause issue?

My case is: I'm working a .net library which wraps an existing C++ library. One method in C++ returns an unsigned int and I also want to return the .net corresponding method with an System.Uint32. ...
4
votes
1answer
2k 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 ...
6
votes
3answers
392 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 ...
0
votes
1answer
421 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. ...
3
votes
1answer
3k 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 : ...
0
votes
1answer
282 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 ...
2
votes
5answers
382 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 ...
4
votes
2answers
691 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 ...
2
votes
3answers
90 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 ...
20
votes
3answers
816 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 ...
2
votes
2answers
116 views

How does the BCL relate to the CLS?

Some .net Theory question: Which libraries are actually standardized? I know that there is the Common Type System which specifies things like 32-Bit Integers and all this low level info, but I'm ...
3
votes
3answers
260 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 ...
0
votes
1answer
64 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 ...
3
votes
1answer
188 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 ...
7
votes
7answers
725 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 ...
6
votes
1answer
856 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 ...
2
votes
3answers
169 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
1answer
1k 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 ...
2
votes
2answers
451 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
12
votes
2answers
5k 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
1answer
111 views

Looking for the exact list of possible MethodAttributes.SpecialName

I am aware of ctor, cctor, property/indexer prefix: get_, set_, event management prefix: add_, remove_. I have seen a raise_ prefix once or twice (do not remember where). Does a definitive list ...
1
vote
2answers
190 views

Is there a way to use IronPython objects and functions (compiled into an assembly) from C# code?

IronPython.net documentation says the MSIL in the assembly isn't CLS-compliant, but is there a workaround?
1
vote
2answers
201 views

CLS compliant types in P/Invoke helper assembly

Having a separate helper assembly containing only P/Invoke declarations for legacy 3rd party components, I wonder which of these two ways is The Better Oneā„¢ if the assembly must be marked CLS ...
0
votes
2answers
71 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 ...
1
vote
1answer
707 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 ...
0
votes
1answer
601 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 ...
2
votes
2answers
832 views

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

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
729 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
658 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 ...

1 2