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
497 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
449 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
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 ...
5
votes
3answers
161 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
152 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
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
69 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
293 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 ...
3
votes
3answers
146 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
295 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
477 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
571 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
172 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
54 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
69 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
5answers
108 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
447 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
3answers
140 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
391 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
129 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
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
2answers
86 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 ...
0
votes
1answer
160 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
52 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
2answers
468 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
4answers
598 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
583 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 ...