Tagged Questions
52
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
998 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
813 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?
3
votes
1answer
79 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
3answers
404 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 ...
3
votes
3answers
182 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
2answers
545 views
1
vote
2answers
76 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
141 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
304 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
53 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
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
2answers
610 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 ...