How can I make an assembly / class to be CLS compliant? What criteria should they have? And if I just annotate my assembly with [assembly: CLSCompliant(true)] and one of my type is not CLS compliant, will it affect the behaviors of the assembly.
Share
the link above has better to be http://msdn.microsoft.com/en-us/library/a2c7tshk%28v=vs.100%29.aspx for .net 4.
Anyway, Code Analysis or FxCop is your good friend for writing cls compliant code, along for other QA issues.