Language: VB.NET | Type: CODE_SMELL | Severity: Major
Tags: api-design
Assemblies should conform with the Common Language Specification (CLS) in order to be usable across programming languages. To be compliant an
assembly has to indicate it with System.CLSCompliantAttribute.
<Assembly: CLSCompliant(True)> Namespace MyLibrary End Namespace