162.
How can you prevent compile errors in your C# applications when using types that aren't compliant with the CLS?
View Description
Indicates whether a program element is compliant with the Common Language Specification (CLS).
The following example applies a CLSCompliantAttribute to the entire assembly.
using System;
[assembly: CLSCompliant(true)]