Tagged Questions

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?
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 ...