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.
5
votes
2answers
770 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 ...
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 ...
0
votes
2answers
452 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
607 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 ...