Tagged Questions
The cls tag has no wiki summary.
50
votes
7answers
2k views
A definite guide to API-breaking changes in .NET
I would like to gather as much information as possible regarding API versioning in .NET/CLR, and specifically how API changes do or do not break client applications. First, let's define some terms:
...
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.
21
votes
2answers
1k views
CLSCompliant(true) drags in unused references
Can anyone explain the following behavior?
In summary, if you create multiple CLS compliant libraries in Visual Studio 2008 and have them share a common namespace root, a library referencing another ...
7
votes
2answers
972 views
What are the consequences of NON-CLS Compliant code in .NET?
I have a couple of nagging compiler warnings for an app that I ported from VB6 a while back regarding CLS-Compliance including:
Name '_AnIdentifier' is not CLS-Compliant.
Type of parameter 'myType' ...
5
votes
2answers
768 views
Setting CLS compliance for a .NET assembly
Setting CLS compliance for an entire .NET assembly is possible. But how is it actually done? E.g. with Visual Studio 2008?
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 ...
3
votes
1answer
74 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 ...
3
votes
4answers
987 views
Understanding CLS compliance and correct code
I've attempted to create an abstracted control to manage some of the state in our application, however have run a foul of some CLS issues and was hoping that someone could provide some insight.
I ...
3
votes
3answers
179 views
What are the more advanced rules needed for your code to become CLS-complaint?
Here is a specific example which is not CLS-complaint according to VS.NET 2005.
Public Interface IDbId
Function GetNativeObject() As Object
Function Equals(ByVal compObj As IDbId) As Boolean
...
2
votes
1answer
128 views
Sending “cls” to dos causes exception
Background is provided at the end so you can get straight to the problem.
I have a text-based program to help learn vocabulary or anything else (basically simulates flash cards, but flashes up the ...
2
votes
2answers
491 views
2
votes
3answers
391 views
Is there a tool for checking CLS Compliance
Is there a tool out there that anyone knows of that can analyse my .net code (C# and vb.net) and tell me why things are not CLS Compliant?
Visual Studio is happy to tell me a parameter is not CLS ...
1
vote
2answers
269 views
Python - self, no self and cls
Yet another question on what the 'self' is for, what happens if you don't use 'self' and what's 'cls' for.
I "have done my homework", I just want to make sure I got it all.
self - To access an ...
1
vote
1answer
902 views
sencha touch :: adding multiple classes to buttons
is there a way to add multiple classes to a panel or button in sencha touch?
I tried to add more than one with "cls:'newClass secondClass'," but it seems I can only add one class...
thnx!
1
vote
2answers
73 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 ...
1
vote
2answers
571 views
PHP CLI, Windows 7 CMD, and CLS/FF need to get along. (Clear Win7 CMD with PHP from CLI)
Alright now, I have been searching everywhere for a way to accomplish this and apparently nobody on the internet knows what's up. And by internet I mean Google's scope of it.
I am writing a terminal ...
1
vote
2answers
132 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
137 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 ...
1
vote
3answers
294 views
When is it acceptable to break CLS compliance?
I was wondering which edge cases exist that could make Common Language Specification compliance acceptable. Even when not intending to be accessed from other languages, I think that the tenets ...
0
votes
1answer
45 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.
...
0
votes
4answers
139 views
Sending “cls” to dos causes exception
Due to a problem posting, my last question (duplicate of this) was closed.
Background is provided at the end so you can get straight to the problem.
I have a text-based program to help learn ...
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
2answers
606 views
Argument type 'FluentNHibernate.Mapping.IProperty' is not CLS-compliant
Name is not compliant? Layout? What?
Do you have ideas what exactly could generate this message? Any ideas are welcome. I have bunch of such warning.
Actually, I am open to remove ...