Tagged Questions

27
votes
6answers
682 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 d …
1
vote
3answers
144 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 tha …
12
votes
2answers
370 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 …
3
votes
3answers
140 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 IDb …
1
vote
2answers
223 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?
0
votes
2answers
162 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 remo …
2
votes
3answers
305 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 …
1
vote
3answers
161 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 para …
3
votes
2answers
412 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 …